2021-01-23 21:37:28 +00:00
|
|
|
---
|
|
|
|
# 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:
|
2021-01-23 22:51:55 +00:00
|
|
|
- vars/vaults/userman.yml
|
2021-01-23 21:37:28 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
|
2021-01-23 21:38:54 +00:00
|
|
|
- name: "Enabling User Account"
|
2021-01-23 21:37:28 +00:00
|
|
|
freeipa.ansible_freeipa.ipauser:
|
|
|
|
ipaadmin_principal: "{{ ipa_admin }}"
|
|
|
|
ipaadmin_password: "{{ ipaadmin_password }}"
|
|
|
|
name: "{{ ipa_name }}"
|
|
|
|
state: enabled
|
|
|
|
tags:
|
|
|
|
- users
|
2021-08-30 05:02:24 +00:00
|
|
|
...
|