mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-10 16:01:23 +00:00
8dc0268a50
This release adds support for privileges and roles for the initial IPA team accounts.
31 lines
917 B
YAML
31 lines
917 B
YAML
---
|
|
# This playbook is meant to be used with callable variables, like adhoc or AWX.
|
|
# What: Creates groups in the idm infrastructure based on the variables provided
|
|
|
|
- name: Create our initial users
|
|
hosts: ipaserver
|
|
become: false
|
|
gather_facts: 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"
|
|
freeipa.ansible_freeipa.ipagroup:
|
|
ipaadmin_password: "{{ ipaadmin_password }}"
|
|
name: "{{ ipaGroup }}"
|
|
description: "{{ ipaDescription }}"
|
|
nonposix: "{{ ipaPosix }}"
|
|
tags:
|
|
- groups
|