Add host filed for user creation
This commit is contained in:
		@@ -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) }}"
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user