From 8ee93d8d3d5f3aca8751dc2022c5168e5b30fa51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Droz?= Date: Sun, 3 Apr 2016 00:25:27 -0300 Subject: [PATCH] add no_log to operation on confidential data Without no_log, password would appear in node's syslog. It's probably unwanted when it comes to password --- tasks/users.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/users.yml b/tasks/users.yml index 06d769c..b94deef 100644 --- a/tasks/users.yml +++ b/tasks/users.yml @@ -8,3 +8,4 @@ state: present append_privs: "{{ item.append_privs | default('no') }}" with_items: "{{ mysql_users }}" + no_log: true