f120968772
Add receive-ca-cert relation. Update the CA bundle to snap config ca.bundle Update nova configuration. Change-Id: I7008d6525f38d1b6f2f74782f8488b3a95b43efb
21 lines
905 B
Plaintext
21 lines
905 B
Plaintext
{% if identity_service.service_domain_id -%}
|
|
[service_user]
|
|
{% if identity_service.admin_auth_url -%}
|
|
auth_url = {{ identity_service.admin_auth_url }}
|
|
{% elif identity_service.internal_auth_url -%}
|
|
auth_url = {{ identity_service.internal_auth_url }}
|
|
{% elif identity_service.internal_host -%}
|
|
auth_url = {{ identity_service.internal_protocol }}://{{ identity_service.internal_host }}:{{ identity_service.internal_port }}
|
|
{% endif -%}
|
|
send_service_user_token = true
|
|
auth_type = password
|
|
project_domain_id = {{ identity_service.service_domain_id }}
|
|
user_domain_id = {{ identity_service.service_domain_id }}
|
|
project_name = {{ identity_service.service_project_name }}
|
|
username = {{ identity_service.service_user_name }}
|
|
password = {{ identity_service.service_password }}
|
|
{% if receive_ca_cert and receive_ca_cert.ca_bundle -%}
|
|
cafile = /usr/local/share/ca-certificates/ca-bundle.pem
|
|
{% endif -%}
|
|
{% endif -%}
|