generated from aws-ia/.github
-
Notifications
You must be signed in to change notification settings - Fork 12
/
alias.tf
130 lines (108 loc) · 2.22 KB
/
alias.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
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
# Multiple providers are needed to search for information if loadbalancers are apart of the ARC configuration
# data sources are conditioned to check if LBs are being managed & per region. LBs will only be searched if
# theyre specified in a particular region.
# NORTHERN VIRGINIA : us-east-1
provider "aws" {
region = "us-east-1"
alias = "us-east-1"
}
# OHIO : us-east-2
provider "aws" {
region = "us-east-2"
alias = "us-east-2"
}
# NORTHERN CALIFORNIA : us-west-1
provider "aws" {
region = "us-west-1"
alias = "us-west-1"
}
# OREGON : us-west-2
provider "aws" {
region = "us-west-2"
alias = "us-west-2"
}
# CANADA : ca-central-1
provider "aws" {
region = "ca-central-1"
alias = "ca-central-1"
}
# SOUTH AFRICA : af-south-1
# provider "aws" {
# region = "af-south-1"
# alias = "af-south-1"
# }
# HONG KONG : ap-east-1
# provider "aws" {
# region = "ap-east-1"
# alias = "ap-east-1"
# }
# MUMBAI : ap-south-1
provider "aws" {
region = "ap-south-1"
alias = "ap-south-1"
}
# OSAKA_LOCAL : ap-northeast-3
provider "aws" {
region = "ap-northeast-3"
alias = "ap-northeast-3"
}
# SEOUL : ap-northeast-2
provider "aws" {
region = "ap-northeast-2"
alias = "ap-northeast-2"
}
# SINGAPORE : ap-southeast-1
provider "aws" {
region = "ap-southeast-1"
alias = "ap-southeast-1"
}
# SYDNEY : ap-southeast-2
provider "aws" {
region = "ap-southeast-2"
alias = "ap-southeast-2"
}
# TOKYO : ap-northeast-1
provider "aws" {
region = "ap-northeast-1"
alias = "ap-northeast-1"
}
# FRANKFHURT : eu-central-1
provider "aws" {
region = "eu-central-1"
alias = "eu-central-1"
}
# IRELAND : eu-west-1
provider "aws" {
region = "eu-west-1"
alias = "eu-west-1"
}
# LONDON : eu-west-2
provider "aws" {
region = "eu-west-2"
alias = "eu-west-2"
}
# MILAN : eu-south-1
provider "aws" {
region = "eu-south-1"
alias = "eu-south-1"
}
# PARIS : eu-west-3
provider "aws" {
region = "eu-west-3"
alias = "eu-west-3"
}
# STOCKHOLM : eu-north-1
provider "aws" {
region = "eu-north-1"
alias = "eu-north-1"
}
# MIDDLE EAST: me-south-1
# provider "aws" {
# region = "me-south-1"
# alias = "me-south-1"
# }
# SAO PAULO : sa-east-1
provider "aws" {
region = "sa-east-1"
alias = "sa-east-1"
}