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

variable "application_family" {
  description = "Name of application family"
  default     = "assets"
}

variable "bucket_name" {
  description = "Bucket name"
  default     = "orcd-raw-assets"
}
