variable "container_image" {
  description = "Docker image to deploy"
  type        = string
}

variable "vpc_id" {
  description = "PRD VPC ID (used for target group). Captured from PRD read-only inspection."
  type        = string
  default     = "vpc-0b49d2aaa00ecc5f7"
}

variable "container_port" {
  description = "Application port for health check and target group"
  type        = number
  default     = 3000
}

variable "private_alb_arn" {
  description = "ARN of the existing PRD private ALB to attach hu-agent. Captured from PRD read-only inspection."
  type        = string
  default     = "arn:aws:elasticloadbalancing:us-east-1:887841176879:loadbalancer/app/private-services/0bd2fc415390b5a5"
}

variable "target_cluster_arn" {
  description = "ARN of the PRD private-services ECS cluster. Captured from PRD read-only inspection."
  type        = string
  default     = "arn:aws:ecs:us-east-1:887841176879:cluster/private-prd-services"
}

variable "health_check_path" {
  description = "HTTP path for ECS and ALB health checks"
  type        = string
  default     = "/hu-agent/health"
}
