mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-11 00:11:25 +00:00
23 lines
616 B
YAML
23 lines
616 B
YAML
---
|
|
# This builds out the initial users and groups for the rocky linux infra
|
|
- name: Create our initial users
|
|
hosts: ipaserver
|
|
become: false
|
|
vars_files:
|
|
- vars/encpass.yml
|
|
- vars/rdns.yml
|
|
|
|
tasks:
|
|
- name: "Checking for user variables"
|
|
assert:
|
|
that:
|
|
- ipaadmin_password | mandatory
|
|
success_msg: "Required variables provided"
|
|
fail_msg: "We are missing ipa admin password"
|
|
|
|
- name: "Create Reverse Domains"
|
|
freeipa.ansible_freeipa.ipadnszone:
|
|
ipaadmin_password: '{{ ipaadmin_password }}'
|
|
name: '{{ item }}'
|
|
with_items: '{{ rdns }}'
|