-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
156 lines (129 loc) · 2.99 KB
/
variables.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
variable "profile" {
type = string
description = "AWS user access profile"
}
variable "allowed_account_ids" {
type = string
description = "Only these AWS Account IDs may be operated on by this template"
}
variable "us_east_1" {
description = "US East (N. Virginia)"
type = string
default = 127311923021
}
variable "us_east_2" {
description = "US East (Ohio)US East (Ohio)"
type = string
default = 033677994240
}
variable "us_west_1" {
description = "US West (N. California)"
type = string
default = 027434742980
}
variable "us_west_2" {
description = "US West (Oregon)"
type = string
default = 797873946194
}
variable "af_south_1" {
description = "Africa (Cape Town)"
type = string
default = 098369216593
}
variable "ca_central_1" {
description = "Canada (Central)"
type = string
default = 985666609251
}
variable "eu_central_1" {
description = "Europe (Frankfurt)"
type = string
default = 054676820928
}
variable "eu_west_1" {
description = "Europe (Ireland)"
type = string
default = 156460612806
}
variable "eu_west_2" {
description = "Europe (London)"
type = string
default = 652711504416
}
variable "eu_south_1" {
description = "Europe (Milan)"
type = string
default = 635631232127
}
variable "eu_west_3" {
description = "Europe (Paris)"
type = string
default = 009996457667
}
variable "eu_north_1" {
description = "Europe (Stockholm)"
type = string
default = 897822967062
}
variable "ap_east_1" {
description = "Asia Pacific (Hong Kong)"
type = string
default = 754344448648
}
variable "ap_northeast_1" {
description = "Asia Pacific (Tokyo)"
type = string
default = 582318560864
}
variable "ap_northeast_2" {
description = "Asia Pacific (Seoul)"
type = string
default = "600734575887"
}
variable "ap_northeast_3" {
description = "Asia Pacific (Osaka)"
type = string
default = 383597477331
}
variable "ap_southeast_1" {
description = "Asia Pacific (Singapore)"
type = string
default = 114774131450
}
variable "ap_southeast_2" {
description = "Asia Pacific (Sydney)"
type = string
default = 783225319266
}
variable "ap_south_1" {
description = "Asia Pacific (Mumbai)"
type = string
default = 718504428378
}
variable "me_south_1" {
description = "Middle East (Bahrain)"
type = string
default = 076674570225
}
variable "sa_east_1" {
description = "South America (São Paulo)"
type = string
default = 507241528517
}
variable "email" {
type = string
description = "E-mail address"
}
variable "domain" {
type = string
description = "Domain name public zone"
}
variable "domain_private" {
type = string
description = "Domain name private zone"
}
variable "aws_region" {
type = string
description = "AWS region"
}