mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
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
|