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

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

variable "nameservers" {
  type        = list(string)
  description = "The list of nameservers for the subdomain"
  default = [
    "ns-203.awsdns-25.com.",
    "ns-1978.awsdns-55.co.uk.",
    "ns-1080.awsdns-07.org.",
    "ns-740.awsdns-28.net.",
  ]
}
