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

variable "repository_names" {
  type        = set(string)
  description = "The names of the repositories"
  default = [
    "ows-accounting",
    "ows-accounting-proxy",
  ]
}
