Skip to content

Commit

Permalink
Merge pull request #12 from Flaconi/PLT-1041-flags
Browse files Browse the repository at this point in the history
PLT-1041 converted output value to empty to align with the dependenci…
  • Loading branch information
vselcuk authored Dec 3, 2024
2 parents 673755d + a84cc3f commit 36ceb4a
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 36ceb4a

Please sign in to comment.