sunbeam-charms/templates/parts/section-trustee
Guillaume Boutry dd6000bb51
Add section trustee back to heat.conf
During transition to monorepo, Heat lost its trustee section, that's
needed for long running operation. For example, Magnum's use case, to
create K8S clusters needs this.

Change-Id: I1cd5066a4f2ccdf3f2a519da338e08cd7854a458
2024-02-13 15:48:52 +01:00

13 lines
570 B
Plaintext

[trustee]
auth_type = password
{% 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 -%}
username = {{ identity_service.service_user_name }}
password = {{ identity_service.service_password }}
user_domain_name = {{ identity_service.service_domain_name }}