mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-22 13:11:29 +00:00
add ipauser disable
This commit is contained in:
parent
e0cf7d0024
commit
703eb27176
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
# RabbitMQ Staging Vars
|
# RabbitMQ Staging Vars
|
||||||
rabbitmq_cluster_name: "rabbitprod"
|
rabbitmq_cluster_name: "rabbit"
|
||||||
rabbitmq_cluster_list: "{{ groups['rabbitmq'] }}"
|
rabbitmq_cluster_list: "{{ groups['rabbitmq'] }}"
|
||||||
rabbitmq_env: "production"
|
rabbitmq_env: "production"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
# RabbitMQ Staging Vars
|
# RabbitMQ Staging Vars
|
||||||
rabbitmq_cluster_name: "rabbitstage"
|
rabbitmq_cluster_name: "rabbit"
|
||||||
rabbitmq_cluster_list: "{{ groups['rabbitmq'] }}"
|
rabbitmq_cluster_list: "{{ groups['rabbitmq'] }}"
|
||||||
rabbitmq_env: "staging"
|
rabbitmq_env: "staging"
|
||||||
|
29
ansible/playbooks/adhoc-ipauser-disable.yml
Normal file
29
ansible/playbooks/adhoc-ipauser-disable.yml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
---
|
||||||
|
# This playbook is meant to be used with callable variables, like adhoc or AWX.
|
||||||
|
# What: Creates users in the idm infrastructure based on the variables provided.
|
||||||
|
|
||||||
|
- name: Create a User
|
||||||
|
hosts: ipaserver
|
||||||
|
become: false
|
||||||
|
gather_facts: false
|
||||||
|
vars_files:
|
||||||
|
- vars/vaults/encpass.yml
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
- name: "Checking for user variables"
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- ipa_admin | mandatory
|
||||||
|
- ipaadmin_password | mandatory
|
||||||
|
- ipa_name | mandatory
|
||||||
|
success_msg: "Required variables provided"
|
||||||
|
fail_msg: "We are missing user information or ipa admin password"
|
||||||
|
|
||||||
|
- name: "Creating User Account"
|
||||||
|
freeipa.ansible_freeipa.ipauser:
|
||||||
|
ipaadmin_principal: "{{ ipa_admin }}"
|
||||||
|
ipaadmin_password: "{{ ipaadmin_password }}"
|
||||||
|
name: "{{ ipa_name }}"
|
||||||
|
state: disabled
|
||||||
|
tags:
|
||||||
|
- users
|
29
ansible/playbooks/adhoc-ipauser-enable.yml
Normal file
29
ansible/playbooks/adhoc-ipauser-enable.yml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
---
|
||||||
|
# This playbook is meant to be used with callable variables, like adhoc or AWX.
|
||||||
|
# What: Creates users in the idm infrastructure based on the variables provided.
|
||||||
|
|
||||||
|
- name: Create a User
|
||||||
|
hosts: ipaserver
|
||||||
|
become: false
|
||||||
|
gather_facts: false
|
||||||
|
vars_files:
|
||||||
|
- vars/vaults/encpass.yml
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
- name: "Checking for user variables"
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- ipa_admin | mandatory
|
||||||
|
- ipaadmin_password | mandatory
|
||||||
|
- ipa_name | mandatory
|
||||||
|
success_msg: "Required variables provided"
|
||||||
|
fail_msg: "We are missing user information or ipa admin password"
|
||||||
|
|
||||||
|
- name: "Creating User Account"
|
||||||
|
freeipa.ansible_freeipa.ipauser:
|
||||||
|
ipaadmin_principal: "{{ ipa_admin }}"
|
||||||
|
ipaadmin_password: "{{ ipaadmin_password }}"
|
||||||
|
name: "{{ ipa_name }}"
|
||||||
|
state: enabled
|
||||||
|
tags:
|
||||||
|
- users
|
@ -54,7 +54,7 @@
|
|||||||
# rocky-release-rabbitmq repo
|
# rocky-release-rabbitmq repo
|
||||||
- name: Install centos rabbitmq
|
- name: Install centos rabbitmq
|
||||||
yum:
|
yum:
|
||||||
name: centos-release-rabbitmq
|
name: centos-release-rabbitmq-38
|
||||||
state: present
|
state: present
|
||||||
tags:
|
tags:
|
||||||
- packages
|
- packages
|
||||||
|
Loading…
Reference in New Issue
Block a user