mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-10-31 20:21:23 +00:00
fcdf86b31c
This commit appends the README.md to state that yaml files should start with `---` and end with `...`. This also addresses some linting warnings that were not appearing during pre-commit on local system.
31 lines
864 B
YAML
31 lines
864 B
YAML
---
|
|
# 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/userman.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: "Disabling User Account"
|
|
freeipa.ansible_freeipa.ipauser:
|
|
ipaadmin_principal: "{{ ipa_admin }}"
|
|
ipaadmin_password: "{{ ipaadmin_password }}"
|
|
name: "{{ ipa_name }}"
|
|
state: disabled
|
|
tags:
|
|
- users
|
|
...
|