From a84cc3f1cf9d987d9f3dc26532f6377f8ee29268 Mon Sep 17 00:00:00 2001 From: Volkan Selcuk Date: Tue, 3 Dec 2024 18:17:24 +0100 Subject: [PATCH] PLT-1041 converted output value to empty to align with the dependencies in lite-infra --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index cecbff4..dea2a45 100644 --- a/main.tf +++ b/main.tf @@ -41,7 +41,7 @@ resource "aws_cloudformation_stack" "newrelic_log_ingestion" { } output "newrelic_log_ingestion_lambda_arn" { - value = var.create_log_ingestion_stack ? lookup(aws_cloudformation_stack.newrelic_log_ingestion[0].outputs, "LambdaArn") : null + value = var.create_log_ingestion_stack ? lookup(aws_cloudformation_stack.newrelic_log_ingestion[0].outputs, "LambdaArn") : "" } moved {