mariadb: Beschränke monit-Nutzer auf localhost. Damit sich Monit mit der Datenbank auch verbinden kann.

This commit is contained in:
phil 2022-06-09 10:54:55 +02:00
parent c13c5d63bc
commit 8998e69a04

View file

@ -1,7 +1,7 @@
- name: "monit | Mysql-Nutzer anlegen"
mysql_user:
name: "{{ monit_sql_user }}"
host: "{{ ansible_default_ipv4.address }}"
host: "localhost"
password: "{{ monit_sql_password }}"
state: present
login_unix_socket: "{{ mysql_socket }}"