2020-12-10 07:33:09 +00:00
|
|
|
---
|
|
|
|
# This playbook is meant to be used with callable variables, like adhoc or AWX.
|
2020-12-11 07:39:15 +00:00
|
|
|
# What: Creates groups in the idm infrastructure based on the variables provided
|
2020-12-10 07:33:09 +00:00
|
|
|
|
|
|
|
- name: Create our initial users
|
|
|
|
hosts: ipaserver
|
|
|
|
become: false
|
|
|
|
vars_files:
|
|
|
|
- vars/encpass.yml
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: "Checking for user variables"
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- ipaadmin_password | mandatory
|
|
|
|
- ipaGroup | mandatory
|
|
|
|
- ipaDescription | mandatory
|
|
|
|
- ipaPosix | mandatory
|
|
|
|
success_msg: "Required variables provided"
|
|
|
|
fail_msg: "We are missing group information or ipa admin password"
|
|
|
|
|
|
|
|
- name: "Creating Mandatory Groups"
|
2020-12-12 08:16:44 +00:00
|
|
|
freeipa.ansible_freeipa.ipagroup:
|
2020-12-10 07:33:09 +00:00
|
|
|
ipaadmin_password: "{{ ipaadmin_password }}"
|
|
|
|
name: "{{ ipaGroup }}"
|
|
|
|
description: "{{ ipaDescription }}"
|
|
|
|
nonposix: "{{ ipaPosix }}"
|
|
|
|
tags:
|
|
|
|
- groups
|