charm-nova-compute/hooks/charmhelpers/contrib/openstack/templates/section-keystone-authtoken
Liam Young 1bb23e4026 Enable support keystone v3 endpoint support
Update context and templates to support keystone v3 endpoint

Change-Id: I01f04ef3ed53625d4663315bd1bc3a6ec8566b87
Partial-Bug: 1522397
2016-03-24 11:57:16 +00:00

13 lines
400 B
Plaintext

{% if auth_host -%}
[keystone_authtoken]
auth_uri = {{ service_protocol }}://{{ service_host }}:{{ service_port }}
auth_url = {{ auth_protocol }}://{{ auth_host }}:{{ auth_port }}
auth_plugin = password
project_domain_id = default
user_domain_id = default
project_name = {{ admin_tenant_name }}
username = {{ admin_user }}
password = {{ admin_password }}
signing_dir = {{ signing_dir }}
{% endif -%}