blob: e7ea1fb6045be580ae24f0c7b6a2f65a9c534a8c [file] [log] [blame]
Dmitriy Kruglovb811e642022-10-06 12:24:33 +02001# This is a clouds.yaml file, which can be used by OpenStack tools as a source
2# of configuration on how to connect to a cloud. If this is your only cloud,
3# just put this file in ~/.config/openstack/clouds.yaml and tools like
4# python-openstackclient will just work with no further config. (You will need
5# to add your password to the auth section)
6# If you have more than one cloud account, add the cloud entry to the clouds
7# section of your existing file and you can refer to them by name with
8# OS_CLOUD=openstack or --os-cloud=openstack
9clouds:
10 os-cloud:
11 auth:
12 auth_url: AUTH_URL
13 username: USERNAME
14 password: USER_PASSWORD
15 project_name: PROJECT_NAME
16 project_domain_name: PROJECT_DOMAIN_NAME
17 user_domain_name: USER_DOMAIN_NAME
18 region_name: RegionOne
19 interface: public
20 identity_api_version: 3
21 verify: false