mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-11 00:11:25 +00:00
19 lines
540 B
YAML
19 lines
540 B
YAML
---
|
|
# Creates the first set of users for the IdM Infrastructure. This
|
|
# should create both regular and admin accounts for separation of
|
|
# privilege.
|
|
- name: "Creating Initial Accounts"
|
|
ipauser:
|
|
ipaadmin_password: "{{ ipaadmin_password }}"
|
|
name: "{{ item.name }}"
|
|
first: "{{ item.first }}"
|
|
last: "{{ item.last }}"
|
|
email: "{{ item.email }}"
|
|
password: "{{ item.password }}"
|
|
title: "{{ item.title }}"
|
|
loginshell: "{{ item.loginshell }}"
|
|
update_password: on_create
|
|
loop: "{{ users }}"
|
|
tags:
|
|
- users
|