variable "environment_name" { description = "The name of environment Infrastructure stack, feel free to rename it. Used for cluster and VPC names." type = string default = "eks-blueprint" } variable "aws_region" { description = "AWS Region" type = string default = "us-west-2" } variable "vpc_cidr" { description = "CIDR block for VPC" type = string default = "10.0.0.0/16" } variable "argocd_secret_manager_name_suffix" { type = string description = "Name of secret manager secret for ArgoCD Admin UI Password" default = "argocd-admin-secret" } variable "hosted_zone_name" { type = string description = "Route53 domain for the cluster." default = "example.com" }