File: clouds.yaml

package info (click to toggle)
golang-github-gophercloud-utils 0.0~git20200508.b0167b9-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 784 kB
  • sloc: sh: 20; makefile: 7
file content (142 lines) | stat: -rw-r--r-- 3,700 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
clouds:
  hawaii:
    auth:
      auth_url: "https://hi.example.com:5000/v3"
      username: "jdoe"
      password: "password"
      project_name: "Some Project"
      domain_name: "default"
    region_name: "HNL"
  florida:
    interface: "admin"
    auth:
      auth_url: "https://fl.example.com:5000/v3"
      username: "jdoe"
      password: "password"
      project_id: "12345"
      user_domain_id: "abcde"
    region_name: "MIA"
  california:
    interface: "internal"
    auth:
      auth_url: "https://ca.example.com:5000/v3"
      username: "jdoe"
      password: "password"
      project_name: "Some Project"
      project_domain_name: "default"
      user_domain_name: "default"
    regions:
      - SAN
      - LAX
  arizona:
    auth_type: "token"
    endpoint_type: "public"
    auth:
      auth_url: "https://az.example.com:5000/v3"
      token: "12345"
      project_name: "Some Project"
      domain_name: "default"
    region_name: "PHX"
  newmexico:
    auth_type: "password"
    endpoint_type: "admin"
    auth:
      auth_url: "https://nm.example.com:5000/v3"
      username: "jdoe"
      password: "password"
      project_name: "Some Project"
      project_domain_name: "Some Domain"
      user_domain_name: "Other Domain"
      domain_name: "default"
    region_name: "SAF"
  nevada:
    auth_type: "password"
    interface: "admin"
    endpoint_type: "internal"
    auth:
      auth_url: "https://nv.example.com:5000/v3"
      user_id: "12345"
      password: "password"
      project_name: "Some Project"
      project_domain_name: "Some Domain"
    region_name: "LAS"
  texas:
    auth:
      auth_url: "https://tx.example.com:5000/v3"
      username: "jdoe"
      password: "password"
      project_name: "Some Project"
      user_domain_name: "Some Domain"
      default_domain: "default"
    region_name: "AUS"
  alberta:
    auth_type: "password"
    auth:
      auth_url: "https://ab.example.com:5000/v2.0"
      username: "jdoe"
      password: "password"
      project_name: "Some Project"
    region_name: "YYC"
  yukon:
    auth_type: "v2token"
    auth:
      auth_url: "https://yt.example.com:5000/v2.0"
      token: "12345"
      project_name: "Some Project"
    region_name: "YXY"
  florida_insecure:
    auth:
      auth_url: "https://fl.example.com:5000/v3"
      username: "jdoe"
      password: "password"
      project_id: "12345"
      user_domain_id: "abcde"
    region_name: "MIA"
    verify: False
  florida_secure:
    auth:
      auth_url: "https://fl.example.com:5000/v3"
      username: "jdoe"
      password: "password"
      project_id: "12345"
      user_domain_id: "abcde"
    region_name: "MIA"
    key: /home/myhome/client-cert.key
    cert: /home/myhome/client-cert.crt
    cacert: /home/myhome/ca.crt
  chicago:
    profile: rackspace
    auth:
      username: "jdoe"
      password: "password"
      project_name: "Some Project"
    region_name: "ORD"
  chicago_legacy:
    cloud: rackspace
    auth:
      username: "jdoe"
      password: "password"
      project_name: "Some Project"
    region_name: "ORD"
  chicago_useprofile:
    profile: rackspace
    cloud: rackspace
    auth:
      username: "jdoe"
      password: "password"
      project_name: "Some Project"
    region_name: "ORD"
  philadelphia:
    auth:
      auth_url: "https://phl.example.com:5000/v3"
      username: "jdoe"
      password: "this should be overwritten by secure.yaml"
      project_name: "Some Project"
    region_name: "PHL"
  virginia:
    auth_type: "v3applicationcredential"
    auth:
      auth_url: "https://va.example.com:5000/v3"
      application_credential_id: "app-cred-id"
      application_credential_secret: "secret"
    region_name: "VA"