This repository has been archived by the owner on Jul 10, 2024. It is now read-only.
forked from nozaq/terraform-aws-secure-baseline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
regions.tf
90 lines (72 loc) · 1.47 KB
/
regions.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
# --------------------------------------------------------------------------------------------------
# A list of providers for all AWS regions.
# Reference: https://docs.aws.amazon.com/general/latest/gr/rande.html
# --------------------------------------------------------------------------------------------------
provider "aws" {
region = "ap-northeast-1"
alias = "ap-northeast-1"
}
provider "aws" {
region = "ap-northeast-2"
alias = "ap-northeast-2"
}
provider "aws" {
region = "ap-northeast-3"
alias = "ap-northeast-3"
}
provider "aws" {
region = "ap-south-1"
alias = "ap-south-1"
}
provider "aws" {
region = "ap-southeast-1"
alias = "ap-southeast-1"
}
provider "aws" {
region = "ap-southeast-2"
alias = "ap-southeast-2"
}
provider "aws" {
region = "ca-central-1"
alias = "ca-central-1"
}
provider "aws" {
region = "eu-central-1"
alias = "eu-central-1"
}
provider "aws" {
region = "eu-north-1"
alias = "eu-north-1"
}
provider "aws" {
region = "eu-west-1"
alias = "eu-west-1"
}
provider "aws" {
region = "eu-west-2"
alias = "eu-west-2"
}
provider "aws" {
region = "eu-west-3"
alias = "eu-west-3"
}
provider "aws" {
region = "sa-east-1"
alias = "sa-east-1"
}
provider "aws" {
region = "us-east-1"
alias = "us-east-1"
}
provider "aws" {
region = "us-east-2"
alias = "us-east-2"
}
provider "aws" {
region = "us-west-1"
alias = "us-west-1"
}
provider "aws" {
region = "us-west-2"
alias = "us-west-2"
}