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

variable "environment" {
  default = "networking"
  description = "The environment this subdomain belongs to"
}

variable "application_family" {
  default = "devops"
  description = "The application family this subdomain belongs to"
}

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

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