-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
39 lines (32 loc) · 829 Bytes
/
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
variable "region" {
default = "eu-west-1"
description = "AWS region"
}
variable "cluster_name" {
default = "eks"
}
variable "cluster_version" {
default = "1.29"
description = "Kubernetes version of the EKS Cluster"
}
variable "vpc_name" {
default = "eks-vpc"
}
variable "vpc_cidr" {
default = "10.0.0.0/16"
}
variable "private_subnets" {
description = "List of private subnets"
type = list(string)
default = ["10.0.0.0/24", "10.0.1.0/24", "10.0.2.0/24"]
}
variable "public_subnets" {
description = "List of public subnets"
type = list(string)
default = ["10.0.3.0/24", "10.0.4.0/24", "10.0.5.0/24"]
}
variable "lattice_service_account_name" {
description = "Name of the VPC Lattice Service Account"
type = string
default = "gateway-api-controller"
}