mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-10 11:50:18 +01:00
10 lines
329 B
YAML
10 lines
329 B
YAML
---
|
|
- name: Ensure MySQL users are present.
|
|
mysql_user:
|
|
name: "{{ item.name }}"
|
|
host: "{{ item.host | default('localhost') }}"
|
|
password: "{{ item.password }}"
|
|
priv: "{{ item.priv | default('*.*:USAGE') }}"
|
|
state: present
|
|
append_privs: "{{ item.append_privs | default('no') }}"
|
|
with_items: mysql_users
|