mono-infrastructure/ansible/playbooks/adhoc-ipagroups.yml

31 lines
923 B
YAML
Raw Normal View History

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
gather_facts: false
2020-12-10 07:33:09 +00:00
vars_files:
- vars/encpass.yml
tasks:
- name: "Checking for user variables"
assert:
that:
- ipaadmin_password | mandatory
2020-12-28 02:27:45 +00:00
- ipa_group | mandatory
- ipa_description | mandatory
- ipa_posix | mandatory
2020-12-10 07:33:09 +00:00
success_msg: "Required variables provided"
fail_msg: "We are missing group information or ipa admin password"
- name: "Creating Mandatory Groups"
freeipa.ansible_freeipa.ipagroup:
2020-12-10 07:33:09 +00:00
ipaadmin_password: "{{ ipaadmin_password }}"
2020-12-28 02:27:45 +00:00
name: "{{ ipa_group }}"
description: "{{ ipa_description }}"
nonposix: "{{ ipa_posix }}"
2020-12-10 07:33:09 +00:00
tags:
- groups