44 lines
857 B
HCL
44 lines
857 B
HCL
variable "environment" {
|
|
description = "The deployment environment"
|
|
type = string
|
|
default = "devel"
|
|
}
|
|
|
|
variable "region" {
|
|
description = "AWS region"
|
|
type = string
|
|
default = "us-east-1"
|
|
}
|
|
|
|
variable "vpc_id" {
|
|
description = "VPC ID"
|
|
type = string
|
|
default = "vpc-0271dff7a4b4bbf76"
|
|
}
|
|
|
|
variable "cluster_name" {
|
|
description = "EKS cluster name"
|
|
type = string
|
|
default = "eks1"
|
|
}
|
|
|
|
variable "private_subnets" {
|
|
description = "List of private subnet CIDRs (one per AZ)"
|
|
type = list(string)
|
|
default = [
|
|
"172.31.128.0/20",
|
|
"172.31.144.0/20",
|
|
"172.31.160.0/20",
|
|
]
|
|
}
|
|
|
|
variable "public_subnets" {
|
|
description = "List of public subnet CIDRs (one per AZ)"
|
|
type = list(string)
|
|
default = [
|
|
"172.31.176.0/24",
|
|
"172.31.177.0/24",
|
|
"172.31.178.0/24",
|
|
]
|
|
}
|