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

[PR #11473/df6d6269 backport][stable-12] keycloak_client: add valid_post_logout_redirect_uris and backchannel_logout_url (#11475)

keycloak_client: add valid_post_logout_redirect_uris and backchannel_logout_url (#11473)

* feat(keycloak_client): add valid_post_logout_redirect_uris and backchannel_logout_url

Add two new convenience parameters that map to client attributes:

- valid_post_logout_redirect_uris: sets post.logout.redirect.uris
  attribute (list items joined with ##)
- backchannel_logout_url: sets backchannel.logout.url attribute

These fields are not top-level in the Keycloak REST API but are stored
as client attributes. The new parameters provide a user-friendly
interface without requiring users to know the internal attribute names
and ##-separator format.

Fixes #6812, fixes #4892

* consolidate changelog and add PR link per review feedback

(cherry picked from commit df6d6269a6)

Co-authored-by: Ivan Kokalovic <67540157+koke1997@users.noreply.github.com>
This commit is contained in:
patchback[bot] 2026-02-07 16:34:46 +01:00 committed by GitHub
parent bbb9b03b5e
commit de6967d3ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 138 additions and 1 deletions

View file

@ -0,0 +1,7 @@
minor_changes:
- keycloak_client - add ``valid_post_logout_redirect_uris`` option to configure
post logout redirect URIs for a client, and ``backchannel_logout_url`` option to configure the
backchannel logout URL for a client
(https://github.com/ansible-collections/community.general/issues/6812,
https://github.com/ansible-collections/community.general/issues/4892,
https://github.com/ansible-collections/community.general/pull/11473).