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

variable "environment" {
  description = "The environment name"
  type        = string
  default     = "prod"
}

variable "application_family" {
  description = "The application family to which the repository belongs"
  type        = string
  default     = "devops"
}

variable "team_name" {
  description = "The team name to which the repository belongs"
  type        = string
  default     = "devops"
}

variable "ecr_repo_names" {
  description = "List of repository names"
  type        = list(string)
  default     = [
    "python-playlist-sync",
  ]
}
