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

variable "app_names" {
  description = "List of application names"
  type        = list(string)
  default = [
    "usm-token-refresher-service"
  ]
}
