-
Notifications
You must be signed in to change notification settings - Fork 15
/
variables.tf
55 lines (50 loc) · 1.44 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
variable "vpc_cidr" {
type = string
description = "The CIDR to use for the VPC."
}
variable "region" {
type = string
description = "The region into which to deploy the VPC."
}
variable "availability_zones" {
type = list(string)
description = "The availability zones for which to add subnets."
}
variable "component" {
type = string
description = "The component this network will contain."
}
variable "deployment_identifier" {
type = string
description = "An identifier for this instantiation."
}
variable "dependencies" {
description = "A comma separated list of components depended on my this component."
type = list(string)
default = []
}
variable "public_subnets_offset" {
description = "The number of /24s to offset the public subnets in the VPC CIDR."
type = number
default = 0
}
variable "private_subnets_offset" {
description = "The number of /24s to offset the private subnets in the VPC CIDR."
type = number
default = 0
}
variable "include_route53_zone_association" {
description = "Whether or not to associate the VPC with a zone id (\"yes\" or \"no\")."
type = string
default = "yes"
}
variable "private_zone_id" {
description = "The ID of the private Route 53 zone."
type = string
default = null
}
variable "include_nat_gateways" {
description = "Whether or not to deploy NAT gateways in each availability zone for outbound Internet connectivity (\"yes\" or \"no\")."
type = string
default = "yes"
}