output "topic_arn" {
  description = "ARN of SNS topic"
  value       = aws_sns_topic.topic.arn
}

output "topic_name" {
  description = "Name of SNS topic"
  value       = aws_sns_topic.topic.name
}

