mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Fix tests not being created properly
I used plugin_auth_string instead of plugin_hash_string. But using the module is dangerous because we ma never catch an error. So using a command was the way to go anyway.
This commit is contained in:
parent
fc08cdae81
commit
e6b2494c8b
1 changed files with 18 additions and 52 deletions
|
@ -148,66 +148,32 @@
|
||||||
- GRANT SELECT ON users_info_db.* TO users_info_multi_hosts@'host2'
|
- GRANT SELECT ON users_info_db.* TO users_info_multi_hosts@'host2'
|
||||||
|
|
||||||
- name: Mysql_info users_info | Prepare tests users for MariaDB
|
- name: Mysql_info users_info | Prepare tests users for MariaDB
|
||||||
community.mysql.mysql_user:
|
community.mysql.mysql_query:
|
||||||
name: "{{ item.name }}"
|
query:
|
||||||
host: "users_info.com"
|
- >-
|
||||||
plugin: "{{ item.plugin | default(omit) }}"
|
CREATE USER users_info_socket@'users_info.com' IDENTIFIED WITH
|
||||||
plugin_auth_string: "{{ item.plugin_auth_string | default(omit) }}"
|
unix_socket
|
||||||
plugin_hash_string: "{{ item.plugin_hash_string | default(omit) }}"
|
- GRANT ALL ON *.* to users_info_socket@'users_info.com'
|
||||||
tls_require: "{{ item.tls_require | default(omit) }}"
|
|
||||||
priv: "{{ item.priv }}"
|
|
||||||
resource_limits: "{{ item.resource_limits | default(omit) }}"
|
|
||||||
column_case_sensitive: true
|
|
||||||
state: present
|
|
||||||
loop:
|
|
||||||
- name: users_info_socket # Only for MariaDB
|
|
||||||
priv:
|
|
||||||
'*.*': 'ALL'
|
|
||||||
plugin: 'unix_socket'
|
|
||||||
when:
|
when:
|
||||||
- db_engine == 'mariadb'
|
- db_engine == 'mariadb'
|
||||||
|
|
||||||
- name: Mysql_info users_info | Prepare tests users for MySQL
|
- name: Mysql_info users_info | Prepare tests users for MySQL
|
||||||
community.mysql.mysql_user:
|
community.mysql.mysql_query:
|
||||||
name: "{{ item.name }}"
|
query:
|
||||||
host: "users_info.com"
|
- >-
|
||||||
plugin: "{{ item.plugin | default(omit) }}"
|
CREATE USER users_info_sha256@'users_info.com' IDENTIFIED WITH
|
||||||
plugin_auth_string: "{{ item.plugin_auth_string | default(omit) }}"
|
sha256_password BY 'msandbox'
|
||||||
plugin_hash_string: "{{ item.plugin_hash_string | default(omit) }}"
|
- GRANT ALL ON *.* to users_info_sha256@'users_info.com'
|
||||||
tls_require: "{{ item.tls_require | default(omit) }}"
|
|
||||||
priv: "{{ item.priv }}"
|
|
||||||
resource_limits: "{{ item.resource_limits | default(omit) }}"
|
|
||||||
column_case_sensitive: true
|
|
||||||
state: present
|
|
||||||
loop:
|
|
||||||
- name: users_info_sha256 # Only for MySQL
|
|
||||||
priv:
|
|
||||||
'*.*': 'ALL'
|
|
||||||
plugin_auth_string:
|
|
||||||
'$5$/<w*D`L4\"F$WQiI1Pev.7atAh8udYs3wqlzgdfV8LXoy7rqSEC7NF2'
|
|
||||||
plugin: 'sha256_password'
|
|
||||||
when:
|
when:
|
||||||
- db_engine == 'mysql'
|
- db_engine == 'mysql'
|
||||||
|
|
||||||
- name: Mysql_info users_info | Prepare tests users for MySQL 8+
|
- name: Mysql_info users_info | Prepare tests users for MySQL 8+
|
||||||
community.mysql.mysql_user:
|
community.mysql.mysql_query:
|
||||||
name: "{{ item.name }}"
|
query:
|
||||||
host: "users_info.com"
|
- >-
|
||||||
plugin: "{{ item.plugin | default(omit) }}"
|
CREATE USER users_info_caching_sha2@'users_info.com' IDENTIFIED WITH
|
||||||
plugin_auth_string: "{{ item.plugin_auth_string | default(omit) }}"
|
caching_sha2_password BY 'msandbox'
|
||||||
plugin_hash_string: "{{ item.plugin_hash_string | default(omit) }}"
|
- GRANT ALL ON *.* to users_info_caching_sha2@'users_info.com'
|
||||||
tls_require: "{{ item.tls_require | default(omit) }}"
|
|
||||||
priv: "{{ item.priv }}"
|
|
||||||
resource_limits: "{{ item.resource_limits | default(omit) }}"
|
|
||||||
column_case_sensitive: true
|
|
||||||
state: present
|
|
||||||
loop:
|
|
||||||
- name: users_info_caching_sha2 # Only for MySQL 8+
|
|
||||||
priv:
|
|
||||||
'*.*': 'ALL'
|
|
||||||
plugin_auth_string:
|
|
||||||
'$A$005$61j/uF%Qb4-=O2xkeO82u2HNkF.lxDq0liO4U3xqi7bDUCbWM6HayRXWn1'
|
|
||||||
plugin: 'caching_sha2_password'
|
|
||||||
when:
|
when:
|
||||||
- db_engine == 'mysql'
|
- db_engine == 'mysql'
|
||||||
- db_version is version('8.0', '>=')
|
- db_version is version('8.0', '>=')
|
||||||
|
|
Loading…
Add table
Reference in a new issue