From cdcc4cd01942e9e2334b2c8ee2aab64aed7f40c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Fri, 24 Nov 2023 12:12:05 +0200 Subject: [PATCH 1/3] ipa_config: add passkey choice to ipauserauthtype --- plugins/modules/ipa_config.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/modules/ipa_config.py b/plugins/modules/ipa_config.py index f63fbc21079..0a63c96170c 100644 --- a/plugins/modules/ipa_config.py +++ b/plugins/modules/ipa_config.py @@ -94,8 +94,9 @@ description: - The authentication type to use by default. - The choice V(idp) has been added in community.general 7.3.0. + - The choice V(passkey) has been added in community.general 8.x.x. aliases: ["userauthtype"] - choices: ["password", "radius", "otp", "pkinit", "hardened", "idp", "disabled"] + choices: ["password", "radius", "otp", "pkinit", "hardened", "idp", "passkey", "disabled"] type: list elements: str version_added: '2.5.0' @@ -360,7 +361,7 @@ def main(): ipauserauthtype=dict(type='list', elements='str', aliases=['userauthtype'], choices=["password", "radius", "otp", "pkinit", - "hardened", "idp", "disabled"]), + "hardened", "idp", "passkey", "disabled"]), ipausersearchfields=dict(type='list', elements='str', aliases=['usersearchfields']), ipauserobjectclasses=dict(type='list', elements='str', From d9deb12c7b0bb00a6e8d2ec41165303bd89ee0b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Fri, 24 Nov 2023 12:20:13 +0200 Subject: [PATCH 2/3] Changelog Fragment - 7588 --- .../7588-ipa-config-new-choice-passkey-to-ipauserauthtype.yml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 changelogs/fragments/7588-ipa-config-new-choice-passkey-to-ipauserauthtype.yml diff --git a/changelogs/fragments/7588-ipa-config-new-choice-passkey-to-ipauserauthtype.yml b/changelogs/fragments/7588-ipa-config-new-choice-passkey-to-ipauserauthtype.yml new file mode 100644 index 00000000000..c9d83c761a1 --- /dev/null +++ b/changelogs/fragments/7588-ipa-config-new-choice-passkey-to-ipauserauthtype.yml @@ -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). From 85fc639455f27dddb74087926648315d223d6948 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Sun, 26 Nov 2023 18:05:16 +0200 Subject: [PATCH 3/3] ipa_config: edit ipauserauthtype description Co-authored-by: Felix Fontein --- plugins/modules/ipa_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/ipa_config.py b/plugins/modules/ipa_config.py index 0a63c96170c..871643fd7bd 100644 --- a/plugins/modules/ipa_config.py +++ b/plugins/modules/ipa_config.py @@ -94,7 +94,7 @@ description: - The authentication type to use by default. - The choice V(idp) has been added in community.general 7.3.0. - - The choice V(passkey) has been added in community.general 8.x.x. + - The choice V(passkey) has been added in community.general 8.1.0. aliases: ["userauthtype"] choices: ["password", "radius", "otp", "pkinit", "hardened", "idp", "passkey", "disabled"] type: list