Skip to content

Commit

Permalink
PLT-1041 converted output value to empty to align with the dependenci…
Browse files Browse the repository at this point in the history
…es in lite-infra
  • Loading branch information
vselcuk committed Dec 3, 2024
1 parent 673755d commit a84cc3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit a84cc3f

Please sign in to comment.