Merge pull request #1206 from Hestia-Homes/bug/audit-generator-deploy-fix

Add missing variable to lambda variables
This commit is contained in:
Daniel Roth 2026-06-09 16:39:34 +01:00 committed by GitHub
commit f6a4b0f722
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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)"