Switch auth config to keystone v3

previous configuration was v2 api.
that no longer works.This patch will fix it.

Closes-Bug:#1724462

Change-Id: Ib9966a9a6875e2a8417342b387c573a7ec37942d
This commit is contained in:
bhujay 2017-10-18 01:35:51 -07:00
parent 6deee77f9e
commit 8faad8cc58
1 changed files with 8 additions and 4 deletions

View File

@ -37,9 +37,13 @@ memcache_security_strategy = ENCRYPT
memcache_secret_key = {{ memcached_encryption_key }}
[service_credentials]
os_auth_url = {{ keystone_service_internalurl }}
os_username = {{ aodh_service_user_name }}
os_tenant_name = {{ aodh_service_tenant_name }}
os_password = {{ aodh_service_password }}
auth_type = {{ aodh_keystone_auth_plugin }}
auth_url = {{ keystone_service_internalurl }}
project_domain_id = {{ aodh_service_project_domain_id }}
user_domain_id = {{ aodh_service_user_domain_id }}
project_name = {{ aodh_service_project_name }}
username = {{ aodh_service_user_name }}
tenant_name = {{ aodh_service_tenant_name }}
password = {{ aodh_service_password }}
region_name = {{ aodh_service_region }}
interface = {{ aodh_service_endpoint_type }}