variables.tf•947 B
variable "aws_region" {
  description = "The AWS region to deploy to"
  type        = string
}
variable "environment" {
  description = "The deployment environment (dev, uat, stag, prod)"
  type        = string
}
variable "ghcr_user" {
  description = "GitHub Container Registry username"
  type        = string
}
variable "image_tag" {
  description = "Docker image tag to deploy (dev, stag, uat, latest)"
  type        = string
}
variable "vpc_name" {
  description = "Name for the VPC"
  type        = string
}
variable "vpc_cidr" {
  description = "CIDR block for the VPC"
  type        = string
}
variable "public_subnet_cidrs" {
  description = "List of public subnet CIDRs"
  type        = list(string)
}
variable "private_subnet_cidrs" {
  description = "List of private subnet CIDRs"
  type        = list(string)
}
variable "ecs_execution_role_arn" {
  description = "IAM role ARN for ECS task execution"
  type        = string
}