Add ``service_auth`` section

Octavia requries a ``service_auth`` section in addition to
the ``keystone_authtoken`` section for use with its OpenStack
resource orchestration activities.

In our case they will be equal as we have already branched
service accounts out into a separate doman and project.

Change-Id: I29b15c5eb401646691f5281d2514128c40592613
This commit is contained in:
Frode Nordahl 2018-11-19 13:58:29 +01:00
parent 6188ee643a
commit 0cc41b5dcd
1 changed files with 10 additions and 0 deletions

View File

@ -7,6 +7,16 @@ heartbeat_key = {{ options.heartbeat_key }}
[database]
{% include "parts/database" %}
[service_auth]
auth_type = password
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 }}
project_domain_name = {{ identity_service.service_domain }}
user_domain_name = {{ identity_service.service_domain }}
project_name = {{ identity_service.service_tenant }}
username = {{ identity_service.service_username }}
password = {{ identity_service.service_password }}
{% include "parts/section-keystone-authtoken" %}
[oslo_messaging]