mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-07-28 07:31:24 -07:00
Update variable name for consistency
This commit is contained in:
parent
56582f52a2
commit
f79ee2b83c
3 changed files with 12 additions and 14 deletions
|
@ -48,8 +48,8 @@
|
|||
community.mysql.mysql_user:
|
||||
name: "{{ item.name }}"
|
||||
host: "users_privs.com"
|
||||
password: '*6C387FC3893DBA1E3BA155E74754DA6682D04747'
|
||||
encrypted: true
|
||||
plugin: "mysql_native_password"
|
||||
plugin_hash_string: '*6C387FC3893DBA1E3BA155E74754DA6682D04747'
|
||||
priv: "{{ item.priv }}"
|
||||
resource_limits: "{{ item.resource_limits | default(omit) }}"
|
||||
state: present
|
||||
|
@ -107,8 +107,6 @@
|
|||
community.mysql.mysql_user:
|
||||
name: "{{ item.name }}"
|
||||
host: "users_privs.com"
|
||||
password: "{{ item.password | default(omit) }}"
|
||||
encrypted: true
|
||||
plugin: "{{ item.plugin | default(omit) }}"
|
||||
plugin_auth_string: "{{ item.plugin_auth_string | default(omit) }}"
|
||||
plugin_hash_string: "{{ item.plugin_hash_string | default(omit) }}"
|
||||
|
@ -130,8 +128,6 @@
|
|||
community.mysql.mysql_user:
|
||||
name: "{{ item.name }}"
|
||||
host: "users_privs.com"
|
||||
password: "{{ item.password | default(omit) }}"
|
||||
encrypted: true
|
||||
plugin: "{{ item.plugin | default(omit) }}"
|
||||
plugin_auth_string: "{{ item.plugin_auth_string | default(omit) }}"
|
||||
plugin_hash_string: "{{ item.plugin_hash_string | default(omit) }}"
|
||||
|
@ -163,7 +159,8 @@
|
|||
name: "{{ item.name }}"
|
||||
host: "{{ item.host }}"
|
||||
plugin: "{{ item.plugin | default(omit) }}"
|
||||
plugin_auth_string: "{{ item.auth_string | default(omit) }}"
|
||||
plugin_auth_string: "{{ item.plugin_auth_string | default(omit) }}"
|
||||
plugin_hash_string: "{{ item.plugin_hash_string | default(omit) }}"
|
||||
tls_require: "{{ item.tls_require | default(omit) }}"
|
||||
priv: "{{ item.priv | default(omit) }}"
|
||||
resource_limits: "{{ item.resource_limits | default(omit) }}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue