mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix keycloak sanitize_cr (#5934)
* Fix keycloak sanitize_cr * Update changelogs/fragments/5934-fix-keycloak-sanitize_cr.yml Co-authored-by: Felix Fontein <felix@fontein.de> --------- Co-authored-by: Claude Dioudonnat <claude.dioudonnat@be-ys.cloud> Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
cb7a970f6f
commit
78297e44b7
2 changed files with 4 additions and 1 deletions
2
changelogs/fragments/5934-fix-keycloak-sanitize_cr.yml
Normal file
2
changelogs/fragments/5934-fix-keycloak-sanitize_cr.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- "keycloak_client - fix accidental replacement of value for attribute ``saml.signing.private.key`` with ``no_log`` in wrong contexts (https://github.com/ansible-collections/community.general/pull/5934)."
|
|
@ -712,6 +712,7 @@ end_state:
|
|||
from ansible_collections.community.general.plugins.module_utils.identity.keycloak.keycloak import KeycloakAPI, camel, \
|
||||
keycloak_argument_spec, get_token, KeycloakError
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
import copy
|
||||
|
||||
|
||||
def normalise_cr(clientrep, remove_ids=False):
|
||||
|
@ -750,7 +751,7 @@ def sanitize_cr(clientrep):
|
|||
:param clientrep: the clientrep dict to be sanitized
|
||||
:return: sanitized clientrep dict
|
||||
"""
|
||||
result = clientrep.copy()
|
||||
result = copy.deepcopy(clientrep)
|
||||
if 'secret' in result:
|
||||
result['secret'] = 'no_log'
|
||||
if 'attributes' in result:
|
||||
|
|
Loading…
Reference in a new issue