1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-03-24 22:27:24 +00:00

keycloak_realm: Add support for setting first broker login flow (#11622)

* keycloak_realm: Add support for setting first broker login flow

* Update plugins/modules/keycloak_realm.py

Co-authored-by: Felix Fontein <felix@fontein.de>

* Add changelog fragment

---------

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
Nils Bergmann 2026-03-23 20:07:11 +01:00 committed by GitHub
parent 6d3ab1a80c
commit 7c039918e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,2 @@
minor_changes:
- keycloak_realm - add ``first_broker_login_flow`` parameter (https://github.com/ansible-collections/community.general/pull/11622).

View file

@ -285,6 +285,13 @@ options:
aliases:
- failureFactor
type: int
first_broker_login_flow:
description:
- The realm first broker login flow.
aliases:
- firstBrokerLoginFlow
type: str
version_added: 12.5.0
internationalization_enabled:
description:
- The realm internationalization enabled option.
@ -923,6 +930,7 @@ def main():
events_expiration=dict(type="int", aliases=["eventsExpiration"]),
events_listeners=dict(type="list", elements="str", aliases=["eventsListeners"]),
failure_factor=dict(type="int", aliases=["failureFactor"]),
first_broker_login_flow=dict(type="str", aliases=["firstBrokerLoginFlow"]),
internationalization_enabled=dict(type="bool", aliases=["internationalizationEnabled"]),
localization_texts=dict(type="dict", aliases=["localizationTexts"]),
login_theme=dict(type="str", aliases=["loginTheme"]),