-
-
Notifications
You must be signed in to change notification settings - Fork 195
/
Copy pathvariables.tf
58 lines (49 loc) · 1.56 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
variable "cidr_block" {
type = string
description = "CIDR for the VPC"
}
variable "instance_tenancy" {
type = string
description = "A tenancy option for instances launched into the VPC"
default = "default"
}
variable "enable_dns_hostnames" {
type = bool
description = "A boolean flag to enable/disable DNS hostnames in the VPC"
default = true
}
variable "enable_dns_support" {
type = bool
description = "A boolean flag to enable/disable DNS support in the VPC"
default = true
}
variable "enable_classiclink" {
type = bool
description = "A boolean flag to enable/disable ClassicLink for the VPC"
default = false
}
variable "enable_classiclink_dns_support" {
type = bool
description = "A boolean flag to enable/disable ClassicLink DNS Support for the VPC"
default = false
}
variable "enable_default_security_group_with_custom_rules" {
type = bool
description = "A boolean flag to enable/disable custom and restricive inbound/outbound rules for the default VPC's SG"
default = true
}
variable "enable_internet_gateway" {
type = bool
description = "A boolean flag to enable/disable Internet Gateway creation"
default = true
}
variable "additional_cidr_blocks" {
type = list(string)
description = "A list of additional IPv4 CIDR blocks to associate with the VPC"
default = null
}
variable "assign_generated_ipv6_cidr_block" {
type = bool
description = "Whether to assign generated ipv6 cidr block to the VPC"
default = true
}