-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.tf
More file actions
41 lines (33 loc) · 999 Bytes
/
input.tf
File metadata and controls
41 lines (33 loc) · 999 Bytes
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
variable "basename" {
description = "Prefix or suffix to add to all resource names"
type = string
}
variable "region" {
description = "AWS region to create the VPC in"
type = string
}
variable "manage_ipv4_nat_gateway" {
description = "Whether to create/manage the IPv4 NAT gateway (extra cost)"
type = bool
default = false
}
variable "vpc_cidr_block" {
description = "CIDR block for the VPC"
type = string
}
variable "primary_public_subnet_cidr_block" {
description = "CIDR block for the primary public subnet"
type = string
}
variable "secondary_public_subnet_cidr_block" {
description = "CIDR block for the secondary public subnet"
type = string
}
variable "primary_private_subnet_cidr_block" {
description = "CIDR block for the primary private subnet"
type = string
}
variable "secondary_private_subnet_cidr_block" {
description = "CIDR block for the secondary private subnet"
type = string
}