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

variable "repository_name" {
  type        = string
  description = "The name of the repository"
  default     = "cucumber-cypress-tests"
}

variable "ecr_names" {
    type        = list(string)
  default = [
    "cucumber-cypress-tests",
    "prod-cucumber-cypress-tests-jenkins",
    "qa-cucumber-cypress-tests-jenkins"
  ]
}
