forked from terraform-community-modules/tf_aws_vpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
42 lines (34 loc) · 996 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
36
37
38
39
40
41
42
variable "name" {}
variable "cidr" {}
# Standard compulsory tags
variable "owner" {}
variable "service" {}
variable "environment" {}
variable "public_subnets" {
description = "A list of public subnets inside the VPC."
default = []
}
variable "private_subnets" {
description = "A list of private subnets inside the VPC."
default = []
}
variable "azs" {
description = "A list of Availability zones in the region"
default = []
}
variable "enable_dns_hostnames" {
description = "should be true if you want to use private DNS within the VPC"
default = false
}
variable "enable_dns_support" {
description = "should be true if you want to use private DNS within the VPC"
default = false
}
variable "private_propagating_vgws" {
description = "A list of VGWs the private route table should propagate."
default = []
}
variable "public_propagating_vgws" {
description = "A list of VGWs the public route table should propagate."
default = []
}