9068d38352
In order to support authentication, bifrost needs to be able to store the configuration safely on disk. The best answer to this problem seems to be to utilize clouds.yaml and os-client-config. Change-Id: I0ee43f1ff8d63deda640dbe4c5ea2e57462b7174
13 lines
457 B
Django/Jinja
13 lines
457 B
Django/Jinja
# WARNING: This file is managed by bifrost.
|
|
clouds:
|
|
bifrost:
|
|
region_name: {{ config_region_name }}
|
|
auth:
|
|
username: {{ config_username }}
|
|
password: {{ config_password }}
|
|
project_name: {{ config_project_name }}
|
|
auth_url: {{ config_auth_url }}
|
|
project_domain_id: "{{ config_project_domain_id | default('default') }}"
|
|
user_domain_id: "{{ config_user_domain_id | default('default') }}"
|
|
identity_api_version: "3"
|