Fix keystone DB Access variable

The DB Access setup for keystone was using the db name and not the user
name. This had no impact because they have the same value.,but if these
were to change at some point it would create an issue.

Change-Id: Ia801ff334ffaa19b37ce4a5ed455a77c705dd3cb
This commit is contained in:
Andy McCrae 2016-06-09 14:28:18 +01:00 committed by Jesse Pretorius (odyssey4me)
parent ab8e272f7f
commit effa83dfd6

View File

@ -136,7 +136,7 @@
login_user: "{{ galera_root_user }}"
login_password: "{{ galera_root_password }}"
login_host: "{{ keystone_galera_address }}"
name: "{{ keystone_galera_database }}"
name: "{{ keystone_galera_user }}"
password: "{{ keystone_container_mysql_password }}"
host: "{{ item }}"
state: "present"