Do not log passwords

This prevents data to be leaked into the callback plugin.

Change-Id: I3c3b03c18c547824ae1f4ac3272f5b2f8142dec0
This commit is contained in:
Jean-Philippe Evrard 2018-04-11 13:37:26 +02:00
parent 1021a5b945
commit 9d4cf24ca7

@ -26,6 +26,7 @@
name: "{{ grafana_db_name }}"
state: "present"
delegate_to: "{{ groups['galera_all'][0] }}"
no_log: true
- name: Grant access to the DB for the service
mysql_user:
login_user: "{{ galera_root_user }}"
@ -37,6 +38,7 @@
state: "present"
priv: "{{ grafana_db_name }}.*:ALL"
delegate_to: "{{ groups['galera_all'][0] }}"
no_log: true
with_items:
- "localhost"
- "%"