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

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

variable "service_name" {
  default = "lambda-content"
}

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

variable "lambda_names" {
  description = "List of lambda-content lambdas (omit lambda-content prefix)"
  type        = list(string)
  default = [
    "index-add-product",
    "index-queue-move",
    "update-indexed-products",
    "store-product-metadata",
    "complete-escalation-notify",
    "complete-fetch-status",
    "revision-apply-metadata",
    "log-auto-approve-results"
  ]
}
