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-business-solutions"
  description = "The name of the subdomain"
}

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.",
  ]
}
