From dc2a070145dddd8ef72f0f96e667b0ee75a23047 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 3 Feb 2026 19:48:59 +0000 Subject: [PATCH] update template so dan can just cp and paste --- infrastructure/terraform/lambda/_template/main.tf | 1 + infrastructure/terraform/lambda/_template/variables.tf | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/infrastructure/terraform/lambda/_template/main.tf b/infrastructure/terraform/lambda/_template/main.tf index 32d92e00..3010aa8a 100644 --- a/infrastructure/terraform/lambda/_template/main.tf +++ b/infrastructure/terraform/lambda/_template/main.tf @@ -9,5 +9,6 @@ module "lambda" { environment = { STAGE = var.stage + LOG_LEVEL = "info" } } diff --git a/infrastructure/terraform/lambda/_template/variables.tf b/infrastructure/terraform/lambda/_template/variables.tf index c0b8780d..e4bab243 100644 --- a/infrastructure/terraform/lambda/_template/variables.tf +++ b/infrastructure/terraform/lambda/_template/variables.tf @@ -21,3 +21,7 @@ variable "image_digest" { locals { image_uri = "${var.ecr_repo_url}@${var.image_digest}" } + +output "resolved_image_uri" { + value = local.image_uri +}