forked from ministryofjustice/terraform-aws-vpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
85 lines (69 loc) · 1.66 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
variable "vpc_name" {
description = "name of the vpc"
type = string
default = ""
}
variable "igw_name" {
description = "name of the igw"
type = string
default = ""
}
variable "vgw_name" {
description = "name of the vgw"
type = string
default = ""
}
variable "amazon_asn" {
description = "The Autonomous System Number (ASN) for the Amazon side of the gateway"
type = string
default = ""
}
variable "private_virtual_interfaces" {
description = "A map of private virtual interfaces"
type = map
default = {}
}
variable "subnets" {
description = "Map of subnets to create in the vpc."
type = map(any)
}
variable "route_tables" {
description = "map of routes to create in the vpc"
type = map(any)
default = {}
}
variable "cidr_block" {
description = "cidr block for the vpc"
type = string
}
variable "secondary_cidr_blocks" {
description = "list of secondary cidr blocks to associate with the vpc"
type = list(string)
default = []
}
variable "vpc_tags" {
description = "Optional Tags to apply to VPC"
type = map(any)
default = {}
}
variable "tags" {
description = "Optional Tags to apply to all resources"
type = map(any)
default = {}
}
variable "security_groups" {
description = "Map of security groups to create"
}
variable "tgw_vpc_attachment" {
description = "Map of TGW VPC attachement parameters"
default = {}
}
variable "public_ipv4_pool" {
type = string
default = "amazon"
}
variable "nat_gateway" {
description = "Map of NAT gateway parameters"
type = map(any)
default = {}
}