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

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

variable "config_s3_bucket" {
  description = "S3 bucket where encrypted content is stored"
  default     = "nickelback"
}

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

variable "application_family" {
  default = "vector"
}

variable "team_name" {
  description = "Team name to be used for tagging"
  default     = "content-delivery-asset-management"
}

variable "ar_db_host" {
  default = "ar-db.theorchard.com"
}

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

variable "dd_db_host" {
  default = "dd-db.theorchard.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-alerts"
}
