documentation

This commit is contained in:
nazunalika 2020-12-10 10:48:58 -07:00
parent a9a483b546
commit 6d133a5f96
3 changed files with 49 additions and 0 deletions

View File

@ -3,3 +3,28 @@
Ansible playbooks, roles, modules, etc will come here. Documentation to come soon.
Each playbook should have comments or a name descripter that explains what the playbook does or how it is used. If not available, README-... files can be used in place.
## Structure
```
files -> As the name implies, non-templated files go here
group_vars -> Group Variables go here if they are not fulfilled in an inventory
host_vars -> Host variables go here
inventory -> All static inventories go here
roles -> Custom roles can go here
tasks -> Common tasks come here
templates -> Templates go here
vars -> Global variables that are called with vars_files go here. This
is mainly for init and encpass.yml
```
## Current Playbook Naming
```
init-* -> Starting infrastructure playbooks that run solo or import other
playbooks that start with import-
import -> Playbooks that should be imported from the top level playbooks
role-* -> These playbooks call roles specifically for infrastructure tasks
adhoc -> These playbooks are one-off playbooks that can be used on the CLI or
in AWX
```

View File

@ -0,0 +1,22 @@
---
# 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
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: "Start users"
ipadnszone:
ipaadmin_password: '{{ ipaadmin_password }}'
name: '{{ internal_domain }}'
with_items:
- dev.rockylinux.org

2
ansible/requirements.yml Normal file
View File

@ -0,0 +1,2 @@
---
- src: freeipa.ansible_freeipa