-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
36 lines (30 loc) · 976 Bytes
/
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
variable "vpc_cidr_block" {
type = string
default = "10.0.0.0/16"
description = "CIDR Block for the VPC."
}
variable "subnets_ipv4_cidr_block" {
type = list(string)
default = ["10.0.0.0/16"]
description = "IPv4 CIDR Block for the subnets."
}
variable "subnets_availability_zones" {
type = list(string)
default = ["us-east-1a", "us-east-1b"]
description = "Availability zones for the subnets."
}
variable "subnets_nat_gateway_enabled" {
type = bool
default = false
description = "Set to `true` to create a nat gateway in each subnet."
}
variable "subnets_max_nats" {
type = number
default = 999
description = "Upper limit on number of NAT Gateways/Instances to create. Set to 1 or 2 for cost savings at the expense of availability."
}
variable "s3_endpoint_enabled" {
type = bool
default = false
description = "Set to `true` to create a VPC gateway endpoint for S3."
}