-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
74 lines (60 loc) · 1.74 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
variable "name" {
description = "Name to be used on all the resources as identifier"
default = ""
}
variable "create_vpc" {
description = "Controls if VPC should be created (it affects almost all resources)"
default = true
}
variable "cidr" {
description = "The CIDR block for the VPC. Default value is a valid CIDR, but not acceptable by AWS and should be overridden"
default = "0.0.0.0/0"
}
variable "instance_tenancy" {
description = "A tenancy option for instances launched into the VPC"
default = "default"
}
variable "enable_dns_hostnames" {
description = "Should be true to enable DNS hostnames in the VPC"
default = false
}
variable "tags" {
description = "A map of tags to add to all resources"
default = {}
}
variable "vpc_tags" {
description = "Additional tags for the VPC"
default = {}
}
variable "public_subnets" {
description = "A list of public subnets inside the VPC"
default = []
}
variable "public_subnet_tags" {
description = "Additional tags for the public subnets"
default = {}
}
variable "public_route_table_tags" {
description = "Additional tags for the public route tables"
default = {}
}
variable "private_subnets" {
description = "A list of private subnets inside the VPC"
default = []
}
variable "private_subnet_tags" {
description = "Additional tags for the private subnets"
default = {}
}
variable "azs" {
description = "A list of availability zones in the region"
default = []
}
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 "igw_tags" {
description = "Additional tags for the internet gateway"
default = {}
}