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

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

variable "brand" {
  default = "orcd"
}

variable "service_name" {
  default = "content"
}

variable "application_family" {
  default = "content-review"
}

variable "cloudfront_logging_bucket" {
  description = "Bucket to use for cloudfront logging"
  default     = "prod-orcd-cloudfront-logs"
}
