variable "region" { description = "The AWS region to deploy resources in" type = string default = "ap-south-1" } variable "vpc_cidr" { description = "The CIDR block for the VPC" type = string default = "10.0.0.0/16" } variable "availability_zones" { description = "List of availability zones to use" type = list(string) default = ["ap-south-1a", "ap-south-1b", "ap-south-1c"] } variable "private_subnet_cidrs" { description = "List of CIDR blocks for private subnets" type = list(string) default = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"] } variable "public_subnet_cidrs" { description = "List of CIDR blocks for public subnets" type = list(string) default = ["10.0.4.0/24", "10.0.5.0/24", "10.0.6.0/24"] } variable "cluster_name" { description = "The name of the EKS cluster" type = string default = "astroshop-eks-cluster" }