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 "service_name" {
  default = "ows-product-configuration"
}

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 = [
    "MYSQL_PASSWORD",
  ]
}

variable "mysql_user" {
  default = "ows-product-conf"
}
variable "mysql_host" {
  default = "qa.db.qaorch.com"
}

variable "mysql_database" {
  default = "art_relations"
}
