variable "aws_region" {
  default     = "us-east-1"
  description = "AWS region"
}

variable "config_s3_bucket" {
  description = "S3 bucket where encrypted content is stored"
  default     = "nickelback"
}

variable "config_service_name" {
  description = "Service name for config locations"
  default     = "orchard-repo-cron-worker"
}

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

variable "application_family" {
  default = "php-monolith"
}

variable "service_name" {
  default = "generate-video-encoding-orders"
}

variable "minimum_capacity" {
  default = 0
}

variable "maximum_capacity" {
  default = 10
}

variable "team_name" {
  default = "content-delivery-asset-management"
}
