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

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

variable "nameservers" {
  type        = list(string)
  description = "The list of nameservers for the subdomain"
  default = [
    "ns-786.awsdns-34.net.",
    "ns-423.awsdns-52.com.",
    "ns-1551.awsdns-01.co.uk.",
    "ns-1405.awsdns-47.org.",
  ]
}
