
* Add functional tests * Add service / group user * Remove observability_libs * Upgrade keystone identity_service lib * Use admin url * Use service token Change-Id: Id52a92eccead21a9a354dd2f9c26ab8271a60568
28 lines
1.2 KiB
Plaintext
28 lines
1.2 KiB
Plaintext
[keystone_authtoken]
|
|
{% if identity_service.admin_auth_url -%}
|
|
auth_url = {{ identity_service.admin_auth_url }}
|
|
interface = admin
|
|
{% elif identity_service.internal_auth_url -%}
|
|
auth_url = {{ identity_service.internal_auth_url }}
|
|
interface = internal
|
|
{% elif identity_service.internal_host -%}
|
|
auth_url = {{ identity_service.internal_protocol }}://{{ identity_service.internal_host }}:{{ identity_service.internal_port }}
|
|
interface = internal
|
|
{% endif -%}
|
|
{% if identity_service.public_auth_url -%}
|
|
www_authenticate_uri = {{ identity_service.public_auth_url }}
|
|
{% elif identity_service.internal_host -%}
|
|
www_authenticate_uri = {{ identity_service.internal_protocol }}://{{ identity_service.internal_host }}:{{ identity_service.internal_port }}
|
|
{% endif -%}
|
|
auth_type = password
|
|
project_domain_name = {{ identity_service.service_domain_name }}
|
|
user_domain_name = {{ identity_service.service_domain_name }}
|
|
project_name = {{ identity_service.service_project_name }}
|
|
username = {{ identity_service.service_user_name }}
|
|
password = {{ identity_service.service_password }}
|
|
service_token_roles = {{ identity_service.admin_role }}
|
|
service_token_roles_required = True
|
|
|
|
# XXX Region should come from the id relation here
|
|
region_name = {{ options.region }}
|