mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
There is a new paskeyconfig management module placed in the plugins
folder:
plugins/modules/ipapasskeyconfig.py
The paskeyconfig module allows to retrieve and modify global passkey
configuration attributes.
Here is the documentation of the module:
README-passkeyconfig.md
New example playbooks have been added:
playbooks/passkeyconfig/passkeyconfig-retrieve.yml
playbooks/passkeyconfig/passkeyconfig-present.yml
New tests for the module can be found at:
tests/passkeyconfig/test_passkeyconfig.yml
tests/passkeyconfig/test_passkeyconfig_client_context.yml
Signed-off-by: Rafael Guterres Jeffman <rjeffman@redhat.com>
15 lines
342 B
YAML
15 lines
342 B
YAML
---
|
|
- name: Passkeyconfig get current configuration example
|
|
hosts: ipaserver
|
|
become: true
|
|
|
|
tasks:
|
|
- name: Get current passkey configuration
|
|
ipapasskeyconfig:
|
|
ipaadmin_password: SomeADMINpassword
|
|
register: result
|
|
|
|
- name: Display current passkey configuration
|
|
ansible.builtin.debug:
|
|
var: result.passkeyconfig
|