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

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

variable "nameservers" {
  type        = list(string)
  description = "The list of nameservers for the subdomain"
  default = [
    "ns-799.awsdns-35.net.",
    "ns-399.awsdns-49.com.",
    "ns-1385.awsdns-45.org.",
    "ns-2030.awsdns-61.co.uk.",
  ]
}
