mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-14 05:22:05 +00:00
There is a new trust management module placed in the plugins folder: plugins/modules/trust.py The trust module allows to ensure presence and absence of trusts. Here is the documentation for the module: README-trust.md New example playbooks have been added: playbooks/trust/add-trust.yml playbooks/trust/del-trust.yml New tests added for the module: tests/hbacrule/test_trust.yml
13 lines
254 B
YAML
13 lines
254 B
YAML
---
|
|
- name: Playbook to create a trust
|
|
hosts: ipaserver
|
|
become: true
|
|
|
|
tasks:
|
|
- name: ensure the trust is present
|
|
ipatrust:
|
|
realm: windows.local
|
|
admin: Administrator
|
|
password: secret_password
|
|
state: present
|