variable "region" {
  default = "us-east-1"
}

variable "environment" {
  default = "qa"
}

variable "service_name" {
  default = "graphql-router"
}

variable "scaling_cooldown_period" {
  description = "Scaling cooldown period in seconds"
  default     = 30
}

variable "scale_up_adjustment" {
  description = "Number of tasks to add in response to cloudwatch alarm."
  default     = 3
}

variable "scale_down_adjustment" {
  description = "Number of tasks to remove when alarm is in OK status."
  default     = -1
}

variable "introspection" {
  default = "1"
}

variable "tracing" {
  default = "1"
}

variable "application_family" {
  default = "user-platform"
}

variable "team_name" {
  description = "Datadog team name"
  default     = "osp"
}

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