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

variable "subdomain_name" {
  description = "The name of the subdomain"
  default     = "qa-permissions-platform"
}

variable "nameservers" {
  type        = list(string)
  description = "The list of nameservers for the subdomain"
  default = [
    "ns-464.awsdns-58.com.",
    "ns-1111.awsdns-10.org.",
    "ns-871.awsdns-44.net.",
    "ns-1893.awsdns-44.co.uk.",
  ]
}
