Fix section-keystone-authtoken template

The section-keystone-authtoken template is not using the adapter
namespaces nor does it support keystone v3

Change-Id: Ic6f66feb123c131334245f499904dbd23937ce94
This commit is contained in:
Liam Young 2016-08-01 13:10:51 +00:00
parent 9b87aae38a
commit 7f3c3cf9db
1 changed files with 12 additions and 7 deletions

View File

@ -1,9 +1,14 @@
{% if auth_host -%}
{% if identity_service.auth_host -%}
[keystone_authtoken]
identity_uri = {{ auth_protocol }}://{{ auth_host }}:{{ auth_port }}/{{ auth_admin_prefix }}
auth_uri = {{ service_protocol }}://{{ service_host }}:{{ service_port }}/{{ service_admin_prefix }}
admin_tenant_name = {{ admin_tenant_name }}
admin_user = {{ admin_user }}
admin_password = {{ admin_password }}
signing_dir = {{ signing_dir }}
auth_uri = {{ identity_service.service_protocol }}://{{ identity_service.service_host }}:{{ identity_service.service_port }}
auth_url = {{ identity_service.auth_protocol }}://{{ identity_service.auth_host }}:{{ identity_service.auth_port }}
auth_type = password
project_domain_name = default
user_domain_name = default
project_name = services
username = {{ identity_service.service_username }}
password = {{ identity_service.service_password }}
{% if identity_service.signing_dir -%}
signing_dir = {{ identity_service.signing_dir }}
{% endif -%}
{% endif -%}