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

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

variable "nameservers" {
  type        = list(string)
  description = "The list of nameservers for the subdomain"
  default = [
    "ns-545.awsdns-04.net.",
    "ns-1635.awsdns-12.co.uk.",
    "ns-1498.awsdns-59.org.",
    "ns-147.awsdns-18.com.",
  ]
}
