diff --git a/outputs.tf b/outputs.tf index 1cf49b7..d184786 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,4 +1,4 @@ output "sns_topic_arn" { description = "The SNS topic that was created" - value = var.sns_topic_arn != null ? aws_sns_topic.this[0].arn : var.sns_topic_arn + value = var.sns_topic_arn != null ? var.sns_topic_arn : aws_sns_topic.this[0].arn }