mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-11 00:11:25 +00:00
12 lines
324 B
YAML
12 lines
324 B
YAML
---
|
|
# Creates the first set of groups for the IdM Infrastructure
|
|
- name: "Creating Mandatory Groups"
|
|
freeipa.ansible_freeipa.ipagroup:
|
|
ipaadmin_password: "{{ ipaadmin_password }}"
|
|
name: "{{ item.group }}"
|
|
description: "{{ item.description }}"
|
|
nonposix: false
|
|
loop: "{{ ipagroups }}"
|
|
tags:
|
|
- groups
|