-
Notifications
You must be signed in to change notification settings - Fork 203
/
variables.tf
126 lines (102 loc) · 3.13 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
variable "name" {
description = "Name to be used on all the resources as identifier"
default = ""
}
variable "cidr" {
description = "The CIDR block for the VPC"
default = ""
}
variable "instance_tenancy" {
description = "A tenancy option for instances launched into the VPC"
default = "default"
}
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 "database_subnets" {
type = "list"
description = "A list of database subnets"
default = []
}
variable "create_database_subnet_group" {
description = "Controls, if should database subnet group be created."
default = true
}
variable "elasticache_subnets" {
type = "list"
description = "A list of elasticache subnets"
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 "enable_classiclink" {
description = "should be true if you want to use ClassicLink within the VPC"
default = false
}
variable "enable_classiclink_dns_support" {
description = "should be true if you want to use private DNS within the classiclinks"
default = false
}
variable "enable_nat_gateway" {
description = "should be true if you want to provision NAT Gateways for each of your private networks"
default = false
}
variable "single_nat_gateway" {
description = "should be true if you want to provision a single shared NAT Gateway across all of your private networks"
default = false
}
variable "enable_s3_endpoint" {
description = "should be true if you want to provision an S3 endpoint to the VPC"
default = false
}
variable "enable_dynamodb_endpoint" {
description = "should be true if you want to provision an DynamoDB endpoint to the VPC"
default = false
}
variable "map_public_ip_on_launch" {
description = "should be false if you do not want to auto-assign public IP on launch"
default = true
}
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 = []
}
variable "tags" {
description = "A map of tags to add to all resources"
default = {}
}
variable "public_subnet_tags" {
description = "Additional tags for the public subnets"
default = {}
}
variable "private_subnet_tags" {
description = "Additional tags for the public subnets"
default = {}
}
variable "database_subnet_tags" {
description = "Additional tags for the database subnets"
default = {}
}
variable "elasticache_subnet_tags" {
description = "Additional tags for the elasticache subnets"
default = {}
}