1
0
Fork 0
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:
Christer Warén 2023-11-29 09:36:51 +02:00 committed by GitHub
parent d716bd4648
commit 512b2c7389
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View file

@ -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).

View file

@ -103,7 +103,8 @@ options:
userauthtype: userauthtype:
description: description:
- The authentication type to use for the user. - 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 type: list
elements: str elements: str
version_added: '1.2.0' version_added: '1.2.0'
@ -378,7 +379,7 @@ def main():
title=dict(type='str'), title=dict(type='str'),
homedirectory=dict(type='str'), homedirectory=dict(type='str'),
userauthtype=dict(type='list', elements='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, module = AnsibleModule(argument_spec=argument_spec,
supports_check_mode=True) supports_check_mode=True)