mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
* keycloak_realm.py: Mark 'reset_password_allowed' as no_log=False
This value is not sensitive but Ansible will complain about it otherwise
* fixup! keycloak_realm.py: Mark 'reset_password_allowed' as no_log=False
* Apply all suggestions from code review
Co-authored-by: Felix Fontein <felix@fontein.de>
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit fe5717c1aa
)
Co-authored-by: Benjamin Schubert <contact@benschubert.me>
This commit is contained in:
parent
297b50fb96
commit
65805e2dd6
2 changed files with 3 additions and 1 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- keycloak_realm - remove warning that ``reset_password_allowed`` needs to be marked as ``no_log`` (https://github.com/ansible-collections/community.general/pull/2694).
|
|
@ -655,7 +655,7 @@ def main():
|
||||||
registration_flow=dict(type='str', aliases=['registrationFlow']),
|
registration_flow=dict(type='str', aliases=['registrationFlow']),
|
||||||
remember_me=dict(type='bool', aliases=['rememberMe']),
|
remember_me=dict(type='bool', aliases=['rememberMe']),
|
||||||
reset_credentials_flow=dict(type='str', aliases=['resetCredentialsFlow']),
|
reset_credentials_flow=dict(type='str', aliases=['resetCredentialsFlow']),
|
||||||
reset_password_allowed=dict(type='bool', aliases=['resetPasswordAllowed']),
|
reset_password_allowed=dict(type='bool', aliases=['resetPasswordAllowed'], no_log=False),
|
||||||
revoke_refresh_token=dict(type='bool', aliases=['revokeRefreshToken']),
|
revoke_refresh_token=dict(type='bool', aliases=['revokeRefreshToken']),
|
||||||
smtp_server=dict(type='dict', aliases=['smtpServer']),
|
smtp_server=dict(type='dict', aliases=['smtpServer']),
|
||||||
ssl_required=dict(choices=["external", "all", "none"], aliases=['sslRequired']),
|
ssl_required=dict(choices=["external", "all", "none"], aliases=['sslRequired']),
|
||||||
|
|
Loading…
Reference in a new issue