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

variable "vpc_id" {
  description = "VPC ID (used for target group)"
  type        = string
  default     = "vpc-0ca675a5ccd7a6bcf"
}

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 private ALB to attach hu-agent"
  type        = string
  default     = "arn:aws:elasticloadbalancing:us-east-1:923929101992:loadbalancer/app/private-services/6954af94adaced42"
}

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