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     = "qa-test-automation"
  description = "The name of the subdomain"
}

variable "nameservers" {
  type        = list(string)
  description = "The list of nameservers for the subdomain"
  default = [
    "ns-545.awsdns-04.net.",
    "ns-1498.awsdns-59.org.",
    "ns-1635.awsdns-12.co.uk.",
    "ns-147.awsdns-18.com.",
  ]
}
