Add 'no_log' for postgres passwords

This commit is contained in:
jeltz 2021-03-10 18:18:08 +01:00
parent 630377edad
commit 6095d9cef9

View file

@ -69,5 +69,6 @@
role: "{{ item.name }}"
privs: "{{ item.privs | join(',') }}"
obj: "{{ item.database }}"
no_log: true
loop: "{{ postgresql_users }}"
...