add missing variable to lambda variables

This commit is contained in:
Daniel Roth 2026-06-09 15:33:35 +00:00
parent 63b1fa08a8
commit c1dda41857

View file

@ -3,6 +3,12 @@ variable "stage" {
type = string
}
variable "lambda_name" {
description = "Lambda function name (passed by the deploy workflow)"
type = string
default = "audit_generator"
}
variable "ecr_repo_url" {
type = string
description = "ECR repository URL (no tag, no digest)"