-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
102 lines (88 loc) · 3.21 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
/**
* Copyright 2020 Quortex
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
variable "vpc_name" {
type = string
description = "Name for the VPC resource. Will be in the Name tag of the VPC instead of the actual resource name, since the resource name cannot be set via Terraform."
default = "quortex"
}
variable "cluster_name" {
type = string
description = "The name of the EKS cluster. Will be used to set the kubernetes.io/cluster/<cluster-name> tag on the VPC and subnets. It is required for Kubernetes to discover them."
}
variable "subnet_name_prefix" {
type = string
description = "A prefix for the name of the subnets."
default = "quortex-"
}
variable "internet_gateway_name" {
type = string
description = "Name for the internet gateway resource."
default = "quortex"
}
variable "route_table_prefix" {
type = string
description = "A prefix for the name of route tables."
default = "quortex-"
}
variable "nat_gateway_name_prefix" {
type = string
description = "A prefix for the name of the NAT Gateways."
default = "quortex-"
}
variable "nat_gateways" {
type = map(object({ subnet_key = string, eip_allocation_id = optional(string) }))
description = <<EOT
The NAT gateways configuration, a map of object, each with a subnet_key that must
match a key of the given subnets variable and an optional eip allocation id.
EOT
default = null
}
variable "vpc_cidr_block" {
type = string
description = "The CIDR block for the VPC"
default = "10.0.0.0/16"
}
variable "subnets" {
type = map(object({ cidr = string, public = bool, tags = optional(map(string), {}) }))
description = <<EOT
A map representing the subnets that need to be created. Each item should
specify the subnet's cidr block, whether the subnet
should be public or not and optionally extra tags to add.
EOT
}
variable "vpc_peering_routes" {
type = list(object({ cidr_block = string, vpc_peering_connection_id = string }))
description = "Additional routes to add, for directing traffic to a VPC internet gateway or a virtual private gateway."
default = []
}
variable "gateway_routes" {
type = list(object({ cidr_block = string, gateway_id = string }))
description = "Additional routes to add, for directing traffic to peered VPC."
default = []
}
variable "tags" {
type = map(any)
description = "The tags (a map of key/value pairs) to be applied to created resources."
default = {}
}
variable "vpc_secondary_cidr" {
type = string
description = "IPv4 secondary CIDR to add to the VPC."
}
variable "availability_zones" {
type = list(string)
description = "The availability zones to use."
}