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

variable "aws_region" {
  default     = "us-east-1"
  description = "AWS region"
}

variable "service_name" {
  default = "direct-delivery-update"
}

variable "application_family" {
  default = "vector"
}

variable "team_name" {
  type        = string
  description = "Name of team that owns the service"
  default     = "content-delivery-asset-management"
}

variable "ar_db_host" {
  default = "qa.db.qaorch.com"
}

variable "ar_db_user" {
  default = "dd-update"
}

variable "dd_db_host" {
  default = "qadddb.qaorch.com"
}

variable "dd_db_user" {
  default = "dd-update"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "AR_DB_PASSWORD",
    "DD_DB_PASSWORD",
  ]
}

variable "notification_endpoints" {
  default = "@slack-content-delivery-and-asset-mgmt-qa-alerts"
}
