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

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

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

variable "domain_name" {
  default     = "prod-permissions-platform.theorchard.io"
  description = "Route53 domain name"
}

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"
}

locals {
  tags = {
    environment        = var.environment
    application_family = var.application_family
    terraformed        = true
  }
}
