Do not log passwords

This prevents data to be leaked into the callback plugin.

Change-Id: Ic2b88c6442d5a8e76e7f4c7b7ee8686ef0070f5e
This commit is contained in:
Jean-Philippe Evrard 2018-04-11 13:49:00 +02:00
parent fc526bf20a
commit 8641a0240c

View File

@ -21,6 +21,7 @@
state: "present" state: "present"
delegate_to: "{{ groups['galera_all'][0] }}" delegate_to: "{{ groups['galera_all'][0] }}"
run_once: True run_once: True
no_log: true
- name: Grant access to the DB for the service - name: Grant access to the DB for the service
mysql_user: mysql_user:
login_user: "root" login_user: "root"
@ -37,3 +38,4 @@
- "%" - "%"
delegate_to: "{{ groups['galera_all'][0] }}" delegate_to: "{{ groups['galera_all'][0] }}"
run_once: True run_once: True
no_log: true