Fix reuse of passwords
This commit is contained in:
parent
64f9d27178
commit
b229f5811f
1 changed files with 2 additions and 2 deletions
|
@ -1,9 +1,9 @@
|
|||
monit_sql_user: monit
|
||||
monit_sql_password: "{{ lookup('ansible.builtin.password', '/dev/null chars=ascii_lowercase,digits length=23') }}"
|
||||
monit_sql_password: "{{ lookup('ansible.builtin.password', '/tmp/{{ inventory_hostname }}_monit_sql_password chars=ascii_lowercase,digits length=23') }}"
|
||||
|
||||
munin_sql_config_file: /etc/munin/plugin-conf.d/zzz-mariadb
|
||||
munin_sql_user: munin
|
||||
munin_sql_password: "{{ lookup('ansible.builtin.password', '/dev/null chars=ascii_lowercase,digits length=23') }}"
|
||||
munin_sql_password: "{{ lookup('ansible.builtin.password', '/tmp/{{ inventory_hostname }}_munin_sql_password chars=ascii_lowercase,digits length=23') }}"
|
||||
|
||||
mysql_socket: /run/mysqld/mysqld.sock
|
||||
|
||||
|
|
Loading…
Reference in a new issue