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

variable "repository_names" {
  type        = list(string)
  description = "The name of the repository"
  default     = [
    "grps-dev-jodconverter",
    "grps-prod-jodconverter",
  ]
}

variable "environment" {
  type        = string
  description = "Available values:  dev, qa, prod."
  default     = "prod"
}

variable "application_family" {
  type        = string
  description = "The name of the application family"
  default     = "backend"
}

variable "service_name" {
  type        = string
  description = "The name of the service."
  default     = "jodconverter"
}

variable "team_name" {
  type        = string
  description = "The name of the Datadog team that owns the repository." # Find valid team handle here: https://sonymusic-pde.datadoghq.com/organization-settings/teams
  default     = "grps-team"
}
