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

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

variable "nameservers" {
  type        = list(string)
  description = "The list of nameservers for the subdomain"
  default = [
    "ns-787.awsdns-34.net.",
    "ns-296.awsdns-37.com.",
    "ns-1550.awsdns-01.co.uk.",
    "ns-1530.awsdns-63.org.",
  ]
}
