mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
ipa_config: add passkey choice to ipauserauthtype (#7588)
* ipa_config: add passkey choice to ipauserauthtype * Changelog Fragment - 7588 * ipa_config: edit ipauserauthtype description Co-authored-by: Felix Fontein <felix@fontein.de> --------- Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
42e55e4f86
commit
d716bd4648
2 changed files with 5 additions and 2 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- ipa_config - adds ``passkey`` choice to ``ipauserauthtype`` parameter's choices (https://github.com/ansible-collections/community.general/pull/7588).
|
|
@ -94,8 +94,9 @@ options:
|
||||||
description:
|
description:
|
||||||
- The authentication type to use by default.
|
- The authentication type to use by default.
|
||||||
- The choice V(idp) has been added in community.general 7.3.0.
|
- The choice V(idp) has been added in community.general 7.3.0.
|
||||||
|
- The choice V(passkey) has been added in community.general 8.1.0.
|
||||||
aliases: ["userauthtype"]
|
aliases: ["userauthtype"]
|
||||||
choices: ["password", "radius", "otp", "pkinit", "hardened", "idp", "disabled"]
|
choices: ["password", "radius", "otp", "pkinit", "hardened", "idp", "passkey", "disabled"]
|
||||||
type: list
|
type: list
|
||||||
elements: str
|
elements: str
|
||||||
version_added: '2.5.0'
|
version_added: '2.5.0'
|
||||||
|
@ -360,7 +361,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", "idp", "disabled"]),
|
"hardened", "idp", "passkey", "disabled"]),
|
||||||
ipausersearchfields=dict(type='list', elements='str',
|
ipausersearchfields=dict(type='list', elements='str',
|
||||||
aliases=['usersearchfields']),
|
aliases=['usersearchfields']),
|
||||||
ipauserobjectclasses=dict(type='list', elements='str',
|
ipauserobjectclasses=dict(type='list', elements='str',
|
||||||
|
|
Loading…
Reference in a new issue