From 7630067d8d52e7ed881fa5053401943ebdbc25b0 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 9 Feb 2026 15:05:01 +0000 Subject: [PATCH] expose role name from lambda_with_sqs --- .../terraform/lambda/modules/lambda_with_sqs/main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/infrastructure/terraform/lambda/modules/lambda_with_sqs/main.tf b/infrastructure/terraform/lambda/modules/lambda_with_sqs/main.tf index 3816c206..065fb790 100644 --- a/infrastructure/terraform/lambda/modules/lambda_with_sqs/main.tf +++ b/infrastructure/terraform/lambda/modules/lambda_with_sqs/main.tf @@ -6,6 +6,10 @@ module "role" { name = "${var.name}-lambda-${var.stage}" } +output "role_name" { + value = module.role.role_name +} + ############################################ # SQS queue + DLQ ############################################