mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 13:50:22 -07:00
[PR #7051/c6393cb2 backport][stable-7] ipa_config: add idp choice to ipauserauthtype (#7072)
ipa_config: add idp choice to ipauserauthtype (#7051)
* ipa_config: add idp choice to ipauserauthtype
* ipa_config: edit ipauserauthtype description
Co-authored-by: Felix Fontein <felix@fontein.de>
* Changelog Fragment - 7051
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit c6393cb2ac
)
Co-authored-by: Christer Warén <cwchristerw@gmail.com>
This commit is contained in:
parent
04f3dd2b56
commit
bae1440425
2 changed files with 7 additions and 3 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- ipa_config - adds ``idp`` choice to ``ipauserauthtype`` parameter's choices (https://github.com/ansible-collections/community.general/pull/7051).
|
|
@ -85,9 +85,11 @@ options:
|
||||||
elements: str
|
elements: str
|
||||||
version_added: '3.7.0'
|
version_added: '3.7.0'
|
||||||
ipauserauthtype:
|
ipauserauthtype:
|
||||||
description: The authentication type to use by default.
|
description:
|
||||||
|
- The authentication type to use by default.
|
||||||
|
- The choice V(idp) has been added in community.general 7.3.0.
|
||||||
aliases: ["userauthtype"]
|
aliases: ["userauthtype"]
|
||||||
choices: ["password", "radius", "otp", "pkinit", "hardened", "disabled"]
|
choices: ["password", "radius", "otp", "pkinit", "hardened", "idp", "disabled"]
|
||||||
type: list
|
type: list
|
||||||
elements: str
|
elements: str
|
||||||
version_added: '2.5.0'
|
version_added: '2.5.0'
|
||||||
|
@ -337,7 +339,7 @@ def main():
|
||||||
ipauserauthtype=dict(type='list', elements='str',
|
ipauserauthtype=dict(type='list', elements='str',
|
||||||
aliases=['userauthtype'],
|
aliases=['userauthtype'],
|
||||||
choices=["password", "radius", "otp", "pkinit",
|
choices=["password", "radius", "otp", "pkinit",
|
||||||
"hardened", "disabled"]),
|
"hardened", "idp", "disabled"]),
|
||||||
ipausersearchfields=dict(type='list', elements='str',
|
ipausersearchfields=dict(type='list', elements='str',
|
||||||
aliases=['usersearchfields']),
|
aliases=['usersearchfields']),
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue