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

variable "aws_region" {
  default = "us-east-1"
}

variable "vpc_id" {
  default = "vpc-34dbfd51"
}

variable "aws_internal_resolver" {
  description = "the aws provided DNS to look up aws things"
  default     = "10.101.0.2"
}

variable "orcd_nydnsresolvers" {
  description = "The Orchard's NY DNS Boxes"
  default     = ["10.160.0.26", "10.160.0.27"]
}

variable "orcd_resolver_cidrs" {
  description = "List of IP ranges where the orchard internal resolvers live"
  default     = ["10.160.0.26/31"]
}
