variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to spin up the fargate environment in"
}

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

variable "vpc_name" {
  description = "VPC name to deploy resources."
  type        = string
  default     = "prod"
}

variable "service_name" {
  default = "ows-vectororder"
}

variable "opensearch_name" {
  default = "dd-search-os"
}

variable "mysql_user" {
  default = "ows_vectororder"
}

variable "mysql_port" {
  default = 3306
}

variable "ar_mysql_database" {
  default = "art_relations"
}

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

variable "dd_mysql_database" {
  default = "direct_delivery"
}

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

variable "ddb_orders_table" {
  default = "qa-vector-orders"
}

variable "ddb_search_requests_table" {
  default = "qa-vector-orders-search-requests"
}

variable "application_family" {
  default = "vector"
}

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

variable "secret_names" {
  type = list(string)
  default = [
    "AR_MYSQL_PASSWORD",
    "DD_MYSQL_PASSWORD",
  ]
}

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

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

variable "delivery_xml_bucket_name" {
  description = "Name of the S3 bucket containing delivery XML files for vector orders"
  default = "qa-vector-audit"
}
