From 668a20db62371e13b54ca646272739754846832b Mon Sep 17 00:00:00 2001 From: OpenStack Proposal Bot Date: Thu, 1 Oct 2020 14:31:46 +0000 Subject: [PATCH] Updated from OpenStack Ansible Tests Change-Id: I7853cfedce34a81e711729e95bf91d2b2313af40 --- tasks/db_setup.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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('%') }}"