Skip to content

Commit 7c9241a

Browse files
authored
Merge pull request #5 from dvianello/patch-1
Fix output ternary operator
2 parents 44b9854 + 2a79859 commit 7c9241a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
output "sns_topic_arn" {
22
description = "The SNS topic that was created"
3-
value = var.sns_topic_arn != null ? aws_sns_topic.this[0].arn : var.sns_topic_arn
3+
value = var.sns_topic_arn != null ? var.sns_topic_arn : aws_sns_topic.this[0].arn
44
}

0 commit comments

Comments
 (0)