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

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

variable "nameservers" {
  type        = list(string)
  description = "The list of nameservers for the subdomain"
  default = [
    "ns-120.awsdns-15.com.",
    "ns-1209.awsdns-23.org.",
    "ns-1661.awsdns-15.co.uk.",
    "ns-887.awsdns-46.net.",
  ]
}
