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

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

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

variable "source_bucket_name" {
  description = "Custom bucket name"
  default     = "orcd-mezzanine-assets"
}

variable "custom_logging_bucket" {
  description = "Custom logging bucket name"
  default     = "backup-orcd-us-east-2-s3-logs"
}
