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     = "dx-advsearch-service" 
}

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     = "devops"
}

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

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     = "devops"
}
