commit 5391e63c7810f3379f93912d0dc59e9b88c6a633
Author: Dmitriy Rabotyagov <noonedeadpunk@ya.ru>
Date:   Thu Oct 1 19:50:58 2020 +0300

    Explicitly use mysql collection
    
    Since we've switched to ansible 2.10 we should explicitly use modules
    provided by mysql collection.
    
    Change-Id: Ic0e96e219792638b24a8e62517d98e21c3150f46

diff --git a/tasks/galera_server_setup.yml b/tasks/galera_server_setup.yml
index 7915466..6e60251 100644
--- a/tasks/galera_server_setup.yml
+++ b/tasks/galera_server_setup.yml
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 - name: Create galera users
-  mysql_user:
+  community.mysql.mysql_user:
     name: "{{ item.name }}"
     host: "{{ item.host }}"
     password: "{{ item.password }}"
diff --git a/tests/test-galera-server-functional.yml b/tests/test-galera-server-functional.yml
index cec9344..a253280 100644
--- a/tests/test-galera-server-functional.yml
+++ b/tests/test-galera-server-functional.yml
@@ -91,7 +91,7 @@
           - "'10.1.0.3' in wsrep_incoming_addresses.stdout"
           - "'10.1.0.4' in wsrep_incoming_addresses.stdout"
     - name: Create DB for service on 10.1.0.2
-      mysql_db:
+      community.mysql.mysql_db:
         login_user: "{{ galera_root_user }}"
         login_password: "{{ galera_root_password }}"
         login_host: "10.1.0.2"
@@ -101,7 +101,7 @@
       tags:
         - skip_ansible_lint
     - name: Grant access to the DB on 10.1.0.3
-      mysql_user:
+      community.mysql.mysql_user:
         login_user: "{{ galera_root_user }}"
         login_password: "{{ galera_root_password }}"
         login_host: "10.1.0.3"