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

variable "ecr_repo_names" {
  description = "List of repository names"
  type        = list(string)
  default     = [
    "neo4j-cluster-backup",
  ]
}
