allows user to switch no_log to True for debugging purpose

This commit is contained in:
Romain Pelisse
2022-12-15 11:52:27 +01:00
parent 9157f83f96
commit 699ab1a5c4
5 changed files with 14 additions and 8 deletions

View File

@@ -14,7 +14,7 @@
body: "client_id={{ keycloak_auth_client }}&username={{ keycloak_admin_user }}&password={{ keycloak_admin_password }}&grant_type=password"
validate_certs: no
register: keycloak_auth_response
no_log: True
no_log: "{{ keycloak_no_log | default('True') }}"
until: keycloak_auth_response.status == 200
retries: 5
delay: 2