1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-02-04 07:51:50 +00:00

Keycloak_realm: Add admin permissions enabled bool (#11002)

* Keycloak_realm: add admin permissions enabled bool

* Update plugins/modules/keycloak_realm.py

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

* Update plugins/modules/keycloak_realm.py

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

* Add Keycloak-add-admin-permissions fragment

* Update changelogs/fragments/11002-keycloak-add-admin-permissions-enabled.yaml

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

---------

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
A 2025-11-02 21:12:27 -08:00 committed by GitHub
parent 6635bd7742
commit e8c482d78e
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 @@
bugfixes:
- keycloak_realm - support setting ``adminPermissionsEnabled`` for a realm (https://github.com/ansible-collections/community.general/issues/10962).

View file

@ -111,6 +111,13 @@ options:
aliases:
- adminEventsEnabled
type: bool
admin_permissions_enabled:
description:
- The realm admin permissions enabled.
aliases:
- adminPermissionsEnabled
type: bool
version_added: 12.0.0
admin_theme:
description:
- The realm admin theme.
@ -870,6 +877,7 @@ def main():
),
admin_events_details_enabled=dict(type="bool", aliases=["adminEventsDetailsEnabled"]),
admin_events_enabled=dict(type="bool", aliases=["adminEventsEnabled"]),
admin_permissions_enabled=dict(type="bool", aliases=["adminPermissionsEnabled"]),
admin_theme=dict(type="str", aliases=["adminTheme"]),
attributes=dict(type="dict"),
browser_flow=dict(type="str", aliases=["browserFlow"]),