Change auth config to keystone v3

according to openstack pike aodh docs[1], we modified auth config
under the "keystone_authtoken" and "service_credentials" groups.
[1] https://docs.openstack.org/aodh/pike/install/ \
install-rdo.html#install-and-configure-components

Change-Id: I6274db43d0840fe813b46b2eb73e381e3f1ca777
(cherry picked from commit f034a7efcd)
This commit is contained in:
gokhan.isik 2017-11-21 15:14:44 +03:00
parent 2b9f1bbc77
commit bcd77b1e10
1 changed files with 10 additions and 4 deletions

View File

@ -27,6 +27,7 @@ project_name = {{ aodh_service_project_name }}
username = {{ aodh_service_user_name }}
password = {{ aodh_service_password }}
region_name = {{ keystone_service_region }}
interface = {{ aodh_service_endpoint_type }}
memcached_servers = {{ memcached_servers }}
@ -37,9 +38,14 @@ 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 }}
insecure = {{ keystone_service_internaluri_insecure | bool }}
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 }}