mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 11:21:25 -07:00
keycloak_realm: remove realm id requirement (#9768)
* remove realm id requirement * replace id with realm * replace id with realm in documentation * add changelog fragment * Update changelogs/fragments/9768-keycloak_realm-remove-id-requirement.yaml Co-authored-by: Felix Fontein <felix@fontein.de> * Update changelogs/fragments/9768-keycloak_realm-remove-id-requirement.yaml Co-authored-by: Felix Fontein <felix@fontein.de> * add comment to get_realm_by_id * Update plugins/module_utils/identity/keycloak/keycloak.py Co-authored-by: Felix Fontein <felix@fontein.de> --------- Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
dd4268e0d9
commit
4c11902fdc
3 changed files with 11 additions and 11 deletions
|
@ -456,6 +456,8 @@ class KeycloakAPI(object):
|
|||
self.module.fail_json(msg='Could not obtain realm %s: %s' % (realm, str(e)),
|
||||
exception=traceback.format_exc())
|
||||
|
||||
# The Keycloak API expects the realm name (like `master`) not the ID when fetching the realm data.
|
||||
# See the Keycloak API docs: https://www.keycloak.org/docs-api/latest/rest-api/#_realms_admin
|
||||
def get_realm_by_id(self, realm='master'):
|
||||
""" Obtain realm representation by id
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue