-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
45 lines (37 loc) · 935 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
40
41
42
43
44
45
variable "aws_region" {
description = "Region"
type = string
default = "eu-north-1"
}
variable "vpc_cidr" {
description = "The CIDR block for the VPC"
type = string
}
variable "env" {
description = "The environment name (e.g., dev, stage, prod)"
type = string
}
variable "az" {
description = "The first availability zone"
type = list(string)
}
variable "eks_name" {
description = "The name of the EKS cluster"
type = string
}
variable "eks_version" {
description = "The version of the EKS cluster"
type = string
}
variable "public_subnets" {
description = "List of public subnets for the VPC"
type = list(string)
}
variable "private_subnets" {
description = "List of private subnets for the VPC"
type = list(string)
}
# variable "private_subnet_ids" {
# description = "List of private subnet IDs"
# type = list(string)
# }