-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
executable file
·300 lines (258 loc) · 8.17 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
variable "name" {
type = string
description = "VPC name."
}
variable "cidr_block" {
type = string
description = "The CIDR block for the VPC."
}
variable "additional_cidrs" {
type = list(string)
default = []
description = "List of the additional IPv4 CIDR blocks to associate with the VPC."
}
variable "assign_generated_ipv6_cidr_block" {
type = string
default = false
description = "Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC. You cannot specify the range of IP addresses, or the size of the CIDR block."
}
variable "enable_classiclink" {
type = string
default = false
description = "A boolean flag to enable/disable ClassicLink for the VPC. Only valid in regions and accounts that support EC2 Classic. See the ClassicLink documentation for more information."
}
variable "enable_classiclink_dns_support" {
type = string
default = false
description = "A boolean flag to enable/disable ClassicLink DNS Support for the VPC. Only valid in regions and accounts that support EC2 Classic."
}
variable "enable_dns_hostnames" {
type = string
default = false
description = "A boolean flag to enable/disable DNS hostnames in the VPC."
}
variable "enable_dns_support" {
type = bool
default = true
description = "A boolean flag to enable/disable DNS support in the VPC."
}
variable "instance_tenancy" {
type = string
default = "default"
description = "A tenancy option for instances launched into the VPC."
}
variable "tags" {
type = map(string)
default = {}
description = "Key-value mapping of default tags for all IAM users."
}
# VPC PRIVATE DNS ZONE
variable "private_dns_zone" {
type = string
default = ""
description = "Private DNS zone name."
}
# VPC DHCP OPTIONS
variable "set_dhcp_options" {
type = bool
default = false
description = "Set custom DHCP options for VPC."
}
variable "dhcp_options_domain_name" {
type = string
default = ""
description = "The suffix domain name to use by default when resolving non Fully Qualified Domain Names. In other words, this is what ends up being the search value in the /etc/resolv.conf file."
}
variable "dhcp_options_domain_name_servers" {
type = list(string)
default = []
description = "List of name servers to configure in /etc/resolv.conf. If you want to use the default AWS nameservers you should set this to AmazonProvidedDNS."
}
variable "dhcp_options_ntp_servers" {
type = list(string)
default = []
description = "List of NTP servers to configure."
}
variable "dhcp_options_netbios_name_servers" {
type = list(string)
default = []
description = "List of NETBIOS name servers."
}
variable "dhcp_options_netbios_node_type" {
type = number
default = 2
description = "The NetBIOS node type (1, 2, 4, or 8). AWS recommends to specify 2 since broadcast and multicast are not supported in their network."
}
# NAT GATEWAYS
variable "single_nat_gateway" {
type = bool
default = false
description = "Weather or not to use single NAT gateway."
}
# SUBNETS
variable "persistence_subnets" {
type = list(object({
availability_zone = string
cidr_block = string
ipv6_cidr_block = string
tags = map(string)
}))
default = []
description = "Persistance subnets."
}
variable "persistence_subnets_assign_ipv6_address_on_creation" {
type = bool
default = false
description = "Specify true to indicate that network interfaces created in the specified subnet should be assigned an IPv6 address."
}
variable "private_subnets" {
type = list(object({
availability_zone = string
cidr_block = string
ipv6_cidr_block = string
tags = map(string)
}))
default = []
description = "Private subnets."
}
variable "private_subnets_assign_ipv6_address_on_creation" {
type = bool
default = false
description = "Specify true to indicate that network interfaces created in the specified subnet should be assigned an IPv6 address."
}
variable "public_subnets" {
type = list(object({
availability_zone = string
cidr_block = string
ipv6_cidr_block = string
tags = map(string)
}))
default = []
description = "Public subnets."
}
variable "public_subnets_map_public_ip_on_launch" {
type = bool
default = false
description = "Specify true to indicate that instances launched into the subnet should be assigned a public IP address."
}
variable "public_subnets_assign_ipv6_address_on_creation" {
type = bool
default = false
description = "Specify true to indicate that network interfaces created in the specified subnet should be assigned an IPv6 address."
}
# SUBNET GROUPS
variable "create_database_subnet_group" {
type = bool
default = false
description = "Create databse subnet group."
}
variable "create_elasticache_subnet_group" {
type = bool
default = false
description = "Create elasticache subnet group."
}
variable "create_redshift_subnet_group" {
type = bool
default = false
description = "Create redshift subnet group."
}
# NETWORK ACLS
variable "create_persistence_network_acl" {
type = bool
default = false
description = "Create network ACL for persistance subnets."
}
variable "persistence_inbound_acl_rules" {
type = list(map(string))
default = [
{
rule_number = 100
rule_action = "allow"
from_port = 0
to_port = 0
protocol = "-1"
cidr_block = "0.0.0.0/0"
}
]
description = "Persistance subnets inbound network ACL rules"
}
variable "persistence_outbound_acl_rules" {
type = list(map(string))
default = [
{
rule_number = 100
rule_action = "allow"
from_port = 0
to_port = 0
protocol = "-1"
cidr_block = "0.0.0.0/0"
}
]
description = "Persistance subnets outbound network ACL rules"
}
variable "create_private_network_acl" {
type = bool
default = false
description = "Create network ACL for private subnets."
}
variable "private_inbound_acl_rules" {
type = list(map(string))
default = [
{
rule_number = 100
rule_action = "allow"
from_port = 0
to_port = 0
protocol = "-1"
cidr_block = "0.0.0.0/0"
}
]
description = "Persistance subnets inbound network ACL rules"
}
variable "private_outbound_acl_rules" {
type = list(map(string))
default = [
{
rule_number = 100
rule_action = "allow"
from_port = 0
to_port = 0
protocol = "-1"
cidr_block = "0.0.0.0/0"
}
]
description = "Persistance subnets outbound network ACL rules"
}
variable "create_public_network_acl" {
type = bool
default = false
description = "Create network ACL for public subnets."
}
variable "public_inbound_acl_rules" {
type = list(map(string))
default = [
{
rule_number = 100
rule_action = "allow"
from_port = 0
to_port = 0
protocol = "-1"
cidr_block = "0.0.0.0/0"
}
]
description = "Persistance subnets inbound network ACL rules"
}
variable "public_outbound_acl_rules" {
type = list(map(string))
default = [
{
rule_number = 100
rule_action = "allow"
from_port = 0
to_port = 0
protocol = "-1"
cidr_block = "0.0.0.0/0"
}
]
description = "Persistance subnets outbound network ACL rules"
}