Add host filed for user creation
parent
283454fc69
commit
d10283210c
|
@ -44,8 +44,10 @@
|
|||
with_items: "{{ mysql_databases }}"
|
||||
|
||||
- name: MySQL | Create users
|
||||
# TODO: Add more fileds from https://docs.ansible.com/ansible/latest/collections/community/mysql/mysql_user_module.html
|
||||
mysql_user:
|
||||
name: "{{ item.name }}"
|
||||
host: "{{ item.host }}"
|
||||
state: "{{ item.state | d(omit) }}"
|
||||
password: "{{ item.password | d(omit) }}"
|
||||
priv: "{{ item.priv | d(omit) }}"
|
||||
|
|
Loading…
Reference in New Issue