variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to spin up the environment in"
}

variable "environment" {
  description = "Available values:  dev, qa, prod."
  default     = "networking"
}

variable "domain_name" {
  description = "Name of domain"
  default     = "networking.theorchard.io"
}

variable "nameservers" {
  type        = list(string)
  description = "The list of nameservers for the subdomain"
  default = [
    "ns-1093.awsdns-08.org.",
    "ns-2010.awsdns-59.co.uk.",
    "ns-380.awsdns-47.com.",
    "ns-582.awsdns-08.net.",
  ]
}
