variable "aws_region" {
  type        = string
  default     = "us-east-1"
  description = "The AWS region to create the repository in"
}

variable "lambda_function_names" {
  description = "List of lambda function names"
  type        = list(string)
  default = [
    "lambda-mcc-get-product-metadata",
    "lambda-mcc-product-participations-check",
    "lambda-mcc-track-participations-check",
    "lambda-mcc-label-sound-recording-check",
    "lambda-mcc-fetch-product-participations",
    "lambda-mcc-fetch-track-participations",
    "lambda-mcc-fetch-track",
    "lambda-mcc-check-ddex-generation",
    "lambda-mcc-start-sfn-execution",
    "lambda-mcc-retry-sfn-execution",
    "lambda-mcc-report-stats",
  ]
}
