Use global variable in trustee section

user_domain_id was set to "default". To be inline with other changes we
need to update and use user_domain_name and make it configurable from
global variable.
do the same for project_name and project_domain_name.

Change-Id: I990b6bd3b5f601d68f3cf051db359bd7e8c9e1b5
This commit is contained in:
Sergey Kraynev 2017-03-03 12:04:16 +00:00
parent e5ada4b0a0
commit f7a38eb5df
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@ connection = mysql+pymysql://{{ heat.db.username }}:{{ heat.db.password }}@{{ ad
{{ keystone_authtoken.keystone_authtoken(heat.user, heat.password) }}
[trustee]
user_domain_id = default
user_domain_name = {{ service_account.domain }}
project_domain_name = {{ service_account.domain }}
password = {{ heat.password }}
username = {{ heat.user }}
auth_uri = {{ address('keystone', keystone.public_port, with_scheme=True) }}