-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
57 lines (47 loc) · 1.33 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
variable "availability_zones" {
type = "list"
default = []
description = "List of Availability Zones for NAT Subnets"
}
variable "aws_region" {
type = "string"
description = "AWS region"
}
variable "nat_route_tables" {
type = "list"
description = "List of (hopefully private!) route tables for which to set NAT gateways as default routes"
default = []
}
variable "name" {
type = "string"
description = "NAT name. Synonymous with Role and Nodetype. Used to populate Role and Nodetype tag as well as define resource names and Name tags"
default = "ha-nat"
}
variable "subnets_cidrs" {
type = "list"
default = []
description = "List of CIDR blocks for NAT subnets"
}
variable "subnets_map_public_ip_on_launch" {
type = "string"
default = "0"
description = "If you change this to true, you're probably doing it wrong"
}
variable "subnets_route_tables" {
type = "list"
description = "List of (hopefully public!) route table IDs to associate with the subnets"
default = []
}
variable "tags" {
type = "map"
default = {
Environment = ""
Application = ""
Tier = ""
}
description = "Tags to apply to all components within the microservice"
}
variable "vpc_id" {
type = "string"
description = "Parent VPC ID"
}