mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
ipa_user: add idp and passkey choices to ipauserauthtype (#7589)
* ipa_user: add idp and passkey to ipauserauthtype * Changelog Fragment - 7589 * ipa_user: 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
d716bd4648
commit
512b2c7389
2 changed files with 5 additions and 2 deletions
|
@ -0,0 +1,2 @@
|
|||
minor_changes:
|
||||
- ipa_user - adds ``idp`` and ``passkey`` choice to ``ipauserauthtype`` parameter's choices (https://github.com/ansible-collections/community.general/pull/7589).
|
|
@ -103,7 +103,8 @@ options:
|
|||
userauthtype:
|
||||
description:
|
||||
- The authentication type to use for the user.
|
||||
choices: ["password", "radius", "otp", "pkinit", "hardened"]
|
||||
- The choice V(idp) and V(passkey) has been added in community.general 8.1.0.
|
||||
choices: ["password", "radius", "otp", "pkinit", "hardened", "idp", "passkey"]
|
||||
type: list
|
||||
elements: str
|
||||
version_added: '1.2.0'
|
||||
|
@ -378,7 +379,7 @@ def main():
|
|||
title=dict(type='str'),
|
||||
homedirectory=dict(type='str'),
|
||||
userauthtype=dict(type='list', elements='str',
|
||||
choices=['password', 'radius', 'otp', 'pkinit', 'hardened']))
|
||||
choices=['password', 'radius', 'otp', 'pkinit', 'hardened', 'idp', 'passkey']))
|
||||
|
||||
module = AnsibleModule(argument_spec=argument_spec,
|
||||
supports_check_mode=True)
|
||||
|
|
Loading…
Reference in a new issue