Switch to www_authenticate_uri instead of auth_uri

auth_uri has been deprecated in Stein and also it must include
the URL which is publicly accessible by the user.  However, we
keep it in there still because Magnum depends on it for some
variables.

Change-Id: If04d0342dca0f60e1115db388c5e496672d0ab2f
This commit is contained in:
Mohammed Naser 2018-11-06 15:44:45 +01:00
parent 860d3635d8
commit 175d1900cb
1 changed files with 4 additions and 2 deletions

View File

@ -33,7 +33,8 @@ region_name = {{ magnum_heat_service_region }}
endpoint_type = internalURL
[keystone_auth]
auth_uri = {{ keystone_service_internalurl }}
auth_uri = {{ keystone_service_publicurl }}
www_authenticate_uri = {{ keystone_service_publicurl }}
auth_version = v3
insecure = {{ keystone_service_internaluri_insecure | bool }}
memcached_servers = {{ memcached_servers }}
@ -47,7 +48,8 @@ username = {{ magnum_service_user_name }}
password = {{ magnum_service_password }}
[keystone_authtoken]
auth_uri = {{ keystone_service_internalurl }}
auth_uri = {{ keystone_service_publicurl }}
www_authenticate_uri = {{ keystone_service_publicurl }}
auth_version = v3
insecure = {{ keystone_service_internaluri_insecure | bool }}
memcached_servers = {{ memcached_servers }}