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

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

variable "nameservers" {
  type        = list(string)
  description = "The list of nameservers for the subdomain"
  default = [
    "ns-2024.awsdns-61.co.uk.",
    "ns-1350.awsdns-40.org.",
    "ns-366.awsdns-45.com.",
    "ns-861.awsdns-43.net.",
  ]
}
