community.general.ipa_config – Manage Global FreeIPA Configuration Settings¶
Note
This plugin is part of the community.general collection (version 1.3.6).
To install it use: ansible-galaxy collection install community.general
.
To use it in a playbook, specify: community.general.ipa_config
.
Parameters¶
Examples¶
- name: Ensure the default login shell is bash.
community.general.ipa_config:
ipadefaultloginshell: /bin/bash
ipa_host: localhost
ipa_user: admin
ipa_pass: supersecret
- name: Ensure the default e-mail domain is ansible.com.
community.general.ipa_config:
ipadefaultemaildomain: ansible.com
ipa_host: localhost
ipa_user: admin
ipa_pass: supersecret
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
config
dictionary
|
always |
Configuration as returned by IPA API.
|
Authors¶
Fran Fitzpatrick (@fxfitz)