variable "aws_region" {
  type        = string
  default     = "us-east-1"
  description = "The AWS region to create the repository in"
}

variable "repository_names" {
  description = "List of ECR repository names"
  type        = list(string)
  default = [
    "vector-worker",
    "vector-worker-php82",
  ]
}
