mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-06-10 02:35:54 +00:00
Some example playbooks do not had the parameter `ipaadmin_password` set, and some had a different value than the standard value "SomeADMINpassword". This patch fixes this difference in all example playbooks.
14 lines
299 B
YAML
14 lines
299 B
YAML
---
|
|
- name: Playbook to create a trust
|
|
hosts: ipaserver
|
|
become: true
|
|
|
|
tasks:
|
|
- name: ensure the trust is present
|
|
ipatrust:
|
|
ipaadmin_password: SomeADMINpassword
|
|
realm: windows.local
|
|
admin: Administrator
|
|
password: secret_password
|
|
state: present
|