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

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

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

variable "domain_name" {
  default = "music-graph-os"
}

variable "notification_endpoints" {
  default = "@slack-data-alerts-qa"
}

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

variable "es_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.2xlarge.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"
}
