File: clouds.yaml

package info (click to toggle)
golang-github-gophercloud-utils 0.0~git20231010.80377ec-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 816 kB
  • sloc: sh: 20; makefile: 7
file content (172 lines) | stat: -rw-r--r-- 4,482 bytes parent folder | download
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
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"
  philadelphia_complex:
    auth:
      auth_url: "https://phl.example.com:5000/v3"
      username: "jdoe"
      password: "password"
      project_name: "Some Project"
    regions:
      - name: PHL1
        values:
          auth:
            auth_url: "https://phl1.example.com:5000/v3"
      - PHL2
  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"
  disconnected_clouds:
    auth:
      username: "jdoe"
      password: "password"
      project_name: "Some Project"
    regions:
      - name: SOMEWHERE
        values:
          auth:
            auth_url: "https://somewhere.example.com:5000/v3"
      - name: ANYWHERE
        values:
          auth:
            auth_url: "https://anywhere.example.com:5000/v3"
      - name: NOWHERE
        values:
          auth:
            auth_url: "https://nowhere.example.com:5000/v3"