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     = "prod"
}

variable "domain_name" {
  description = "Name of domain"
  default     = "ny.theorchard.com"
}

variable "application_family" {
  type        = string
  description = "The application family"
  default     = "devops"
}

variable "zone_id" {
  default = "8933e75491d1c763349f8c515ba14af1" # Cloudflare Zone ID for theorchard.com
}
