mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-21 20:59:10 +00:00
keycloak_realm: Add support for setting first broker login flow
This commit is contained in:
parent
25b5655be7
commit
ca8480f545
1 changed files with 7 additions and 0 deletions
|
|
@ -285,6 +285,12 @@ options:
|
|||
aliases:
|
||||
- failureFactor
|
||||
type: int
|
||||
first_broker_login_flow:
|
||||
description:
|
||||
- The realm first broker login flow.
|
||||
aliases:
|
||||
- firstBrokerLoginFlow
|
||||
type: str
|
||||
internationalization_enabled:
|
||||
description:
|
||||
- The realm internationalization enabled option.
|
||||
|
|
@ -923,6 +929,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"]),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue