Fix bug wth missing username on database_user resource

I missed a commit with last change to this part.  The
change was to make the resource unique, but the username attribute
was not added to the resource so it will fail.

Change-Id: I78e84078ab1f1e2919131a6a443a14d8815c02a6
Related-Bug: #1409921
This commit is contained in:
Mark Vanderwiel 2015-01-30 11:56:36 -06:00
parent f361c37b89
commit 3c55a8fc31

View File

@ -99,6 +99,7 @@ module ::Openstack # rubocop:disable Documentation
database_user "create database user #{user}" do
provider user_prov
connection connection_info
username user
password pass
action :create
end
@ -107,6 +108,7 @@ module ::Openstack # rubocop:disable Documentation
database_user "grant database user #{user}" do
provider user_prov
connection connection_info
username user
password pass
database_name db_name
host '%'