commit 00ad20422ea29f6a1f6363c290cf6c6729503bd8 Author: OpenStack Proposal Bot Date: Thu Oct 1 14:31:51 2020 +0000 Updated from OpenStack Ansible Tests Change-Id: I82f7534ed79b60fe42f7479690f5dcc680a60267 diff --git a/tasks/db_setup.yml b/tasks/db_setup.yml index aca206e..09b01f8 100644 --- a/tasks/db_setup.yml +++ b/tasks/db_setup.yml @@ -28,7 +28,7 @@ - common-mariadb block: - name: Create database for service - mysql_db: + community.mysql.mysql_db: name: "{{ item.name }}" login_host: "{{ _oslodb_setup_endpoint | default(omit) }}" login_port: "{{ _oslodb_setup_port | default(omit) }}" @@ -36,7 +36,7 @@ no_log: true - name: Grant access to the database for the service - mysql_user: + community.mysql.mysql_user: name: "{{ item.1.username }}" password: "{{ item.1.password }}" host: "{{ item.1.host | default('%') }}"