-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconst.go
More file actions
38 lines (34 loc) · 992 Bytes
/
const.go
File metadata and controls
38 lines (34 loc) · 992 Bytes
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
package iland
const (
apiHostname = "api.ilandcloud.com"
accessURL = "https://console.ilandcloud.com/auth/realms/iland-core/protocol/openid-connect/token"
refreshURL = "https://console.ilandcloud.com/auth/realms/iland-core/protocol/openid-connect/token"
IPTranslation = "ipTranslation"
PortForwarding = "portForwarding"
Success = "success"
Running = "running"
Error = "error"
Queued = "queued"
Cancelled = "cancelled"
WaitingOnUser = "waiting-on-user-input"
Unknown = "unknown"
)
var LocationIDs = []string{
"ams01.ilandcloud.com",
"ams04.ilandcloud.com",
"dal02.ilandcloud.com",
"dal06.ilandcloud.com",
"dal22.ilandcloud.com",
"dal23.ilandcloud.com",
"dal25.ilandcloud.com",
"lax01.ilandcloud.com",
"lon02.ilandcloud.com",
"man01.ilandcloud.com",
"mel02.ilandcloud.com",
"res01.ilandcloud.com",
"sin01.ilandcloud.com",
"str02.ilandcloud.com",
"str03.ilandcloud.com",
"str05.ilandcloud.com",
"syd02.ilandcloud.com",
}