-
Notifications
You must be signed in to change notification settings - Fork 0
/
locals.tf
80 lines (80 loc) · 2.38 KB
/
locals.tf
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
locals {
init_access_azure_principal_id = (
var.init_access_azure_principal_id == null ?
data.azurerm_client_config.current.object_id :
var.init_access_azure_principal_id
)
location_short = {
asia = "asia"
asiapacific = "apac"
australia = "aus"
australiacentral = "auc"
australiacentral2 = "auc2"
australiaeast = "aue"
australiasoutheast = "ause"
brazil = "bra"
brazilsouth = "brs"
brazilsoutheast = "brse"
canada = "can"
canadacentral = "cac"
canadaeast = "cae"
centralindia = "inc"
centralus = "usc"
chinaeast = "cne"
chinaeast2 = "cne2"
chinaeast3 = "cne3"
chinanorth = "cnn"
chinanorth2 = "cnn2"
chinanorth3 = "cnn3"
eastasia = "asea"
eastus = "use"
eastus2 = "use2"
europe = "eu"
francecentral = "frc"
francesouth = "frs"
germanycentral = "gce"
germanynorth = "gno"
germanynortheast = "gne"
germanywestcentral = "gwc"
global = "glob"
india = "ind"
israelcentral = "ilc"
italynorth = "itn"
japan = "jap"
japaneast = "jpe"
japanwest = "jpw"
korea = "kor"
koreacentral = "krc"
koreasouth = "krs"
northcentralus = "usnc"
northeurope = "eun"
norway = "nor"
norwayeast = "noe"
norwaywest = "now"
polandcentral = "polc"
qatarcentral = "qatc"
singapore = "sgp"
southafricanorth = "san"
southafricawest = "saw"
southcentralus = "ussc"
southeastasia = "asse"
southindia = "ins"
sweden = "swe"
swedencentral = "swec"
swedensouth = "swes"
switzerlandnorth = "swn"
switzerlandwest = "sww"
uaecentral = "uaec"
uaenorth = "uaen"
uk = "uk"
uksouth = "uks"
ukwest = "ukw"
unitedstates = "us"
westcentralus = "uswc"
westeurope = "euw"
westindia = "inw"
westus = "usw"
westus2 = "usw2"
westus3 = "usw3"
}
}