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

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