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