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

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

variable "application_family" {
  default = "content-review"
}

variable "team_name" {
  default = "content-review-management"
}

variable "domain_name" {
  default = "content-review-os"
}

variable "outbound_domain" {
  default = "content-review"
}

variable "notification_endpoints" {
  default = "@slack-content-review-team"
}

variable "escalation_notification_endpoints" {
  default = "@slack-kafka-data-highway-alerts"
}

variable "os_instance_type" {
  # These instances are covered by a Reserved Instance purchase, so changing the instance type could have significant cost implications.
  # Please consult with the DevOps team before making any changes to this.
  default = "m6g.large.search"
}

variable "dedicated_master_type" {
  # These instances are covered by a Reserved Instance purchase, so changing the instance type could have significant cost implications.
  # Please consult with the DevOps team before making any changes to this.
  default = "m6g.large.search"
}
