forked from kung-foo/multiregion-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
70 lines (56 loc) · 1006 Bytes
/
main.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
module "cdn-us-east-1" {
source = "cdn"
region = "us-east-1"
}
module "cdn-us-east-2" {
source = "cdn"
region = "us-east-2"
}
module "cdn-us-west-1" {
source = "cdn"
region = "us-west-1"
}
module "cdn-us-west-2" {
source = "cdn"
region = "us-west-2"
}
module "cdn-ca-central-1" {
source = "cdn"
region = "ca-central-1"
}
module "cdn-eu-west-1" {
source = "cdn"
region = "eu-west-1"
}
module "cdn-eu-west-2" {
source = "cdn"
region = "eu-west-2"
}
module "cdn-eu-central-1" {
source = "cdn"
region = "eu-central-1"
}
module "cdn-ap-northeast-1" {
source = "cdn"
region = "ap-northeast-1"
}
module "cdn-ap-northeast-2" {
source = "cdn"
region = "ap-northeast-2"
}
module "cdn-ap-southeast-1" {
source = "cdn"
region = "ap-southeast-1"
}
module "cdn-ap-southeast-2" {
source = "cdn"
region = "ap-southeast-2"
}
module "cdn-ap-south-1" {
source = "cdn"
region = "ap-south-1"
}
module "cdn-sa-east-1" {
source = "cdn"
region = "sa-east-1"
}