Do not log passwords

This prevents data to be leaked into the callback plugin.

Change-Id: Ia490c2a62bb53b9bdc191787820e1fc12b8aaa58
This commit is contained in:
Jean-Philippe Evrard
2018-04-11 13:41:50 +02:00
parent 9087009185
commit 4dc7bad032

View File

@@ -22,6 +22,7 @@
login_host: "{{ cloudkitty_galera_address }}" login_host: "{{ cloudkitty_galera_address }}"
name: "{{ cloudkitty_galera_database }}" name: "{{ cloudkitty_galera_database }}"
state: "present" state: "present"
no_log: true
tags: tags:
- cloudkitty-db-setup - cloudkitty-db-setup
@@ -35,6 +36,7 @@
host: "{{ item }}" host: "{{ item }}"
state: "present" state: "present"
priv: "{{ cloudkitty_galera_database }}.*:ALL" priv: "{{ cloudkitty_galera_database }}.*:ALL"
no_log: true
with_items: with_items:
- "localhost" - "localhost"
- "%" - "%"