Do not log passwords

This prevents data to be leaked into the callback plugin.

Change-Id: I7fce6153cfbdc33c12421b1b78458d49b962f8e8
(cherry picked from commit 2a80a32549)
This commit is contained in:
Jean-Philippe Evrard 2018-04-11 13:36:03 +02:00
parent 8460728893
commit 23e024e5a0
1 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,7 @@
name: "{{ db_name }}"
state: "present"
delegate_to: "{{ groups['galera_all'][0] }}"
no_log: True
tags:
- common-mysql
@ -37,5 +38,6 @@
append_privs: "{{ db_append_privs | default(omit) }}"
delegate_to: "{{ groups['galera_all'][0] }}"
with_items: "{{ grant_list | default(['localhost', '%']) }}"
no_log: True
tags:
- common-mysql