Amazon SNS (Simple Notification Service)
Overview
Real-life Use Cases
Terraform Example
resource "aws_sns_topic" "alerts" {
name = "alerts-topic"
}
resource "aws_sns_topic_subscription" "email" {
topic_arn = aws_sns_topic.alerts.arn
protocol = "email"
endpoint = "devops@example.com"
}AWS CLI Example
Best Practices
Common Pitfalls
Last updated