update template so dan can just cp and paste

This commit is contained in:
Jun-te Kim 2026-02-03 19:48:59 +00:00
parent 3539c186ab
commit dc2a070145
2 changed files with 5 additions and 0 deletions

View file

@ -9,5 +9,6 @@ module "lambda" {
environment = {
STAGE = var.stage
LOG_LEVEL = "info"
}
}

View file

@ -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
}