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

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

variable "nameservers" {
  type        = list(string)
  description = "The list of nameservers for the subdomain"
  default = [
    "ns-235.awsdns-29.com.",
    "ns-561.awsdns-06.net.",
    "ns-1848.awsdns-39.co.uk.",
    "ns-1097.awsdns-09.org.",
  ]
}
