mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
keycloak_realm: add webAuthnPolicyPasswordlessPasskeysEnabled param (#11197)
* keycloak_realm: add webAuthnPolicyPasswordlessPasskeysEnabled param * Changelog Fragment - 11197 * Apply suggestions from code review Co-authored-by: Felix Fontein <felix@fontein.de> * Fix typo in changelog fragment filename --------- Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
@@ -0,0 +1,2 @@
|
|||||||
|
minor_changes:
|
||||||
|
- keycloak_realm - add ``webAuthnPolicyPasswordlessPasskeysEnabled`` parameter (https://github.com/ansible-collections/community.general/pull/11197).
|
||||||
@@ -732,6 +732,13 @@ options:
|
|||||||
type: list
|
type: list
|
||||||
version_added: 11.3.0
|
version_added: 11.3.0
|
||||||
elements: str
|
elements: str
|
||||||
|
web_authn_policy_passwordless_passkeys_enabled:
|
||||||
|
description:
|
||||||
|
- Enable passkeys (conditional UI) authentication in the username forms.
|
||||||
|
aliases:
|
||||||
|
- webAuthnPolicyPasswordlessPasskeysEnabled
|
||||||
|
type: bool
|
||||||
|
version_added: 12.1.0
|
||||||
|
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- community.general.keycloak
|
- community.general.keycloak
|
||||||
@@ -1005,6 +1012,9 @@ def main():
|
|||||||
web_authn_policy_passwordless_extra_origins=dict(
|
web_authn_policy_passwordless_extra_origins=dict(
|
||||||
type="list", elements="str", aliases=["webAuthnPolicyPasswordlessExtraOrigins"], no_log=False
|
type="list", elements="str", aliases=["webAuthnPolicyPasswordlessExtraOrigins"], no_log=False
|
||||||
),
|
),
|
||||||
|
web_authn_policy_passwordless_passkeys_enabled=dict(
|
||||||
|
type="bool", aliases=["webAuthnPolicyPasswordlessPasskeysEnabled"]
|
||||||
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
argument_spec.update(meta_args)
|
argument_spec.update(meta_args)
|
||||||
|
|||||||
Reference in New Issue
Block a user