You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tf-modules/monitoring/sns-to-slack
lalanza808 a64701c93f fix topic name in sns-to-slack module ref 4 years ago
..
README.md fix topic name in sns-to-slack module ref 4 years ago

README.md

Use a community module for this one. I use this one: https://github.com/terraform-aws-modules/terraform-aws-notify-slack

module "slack_webhook" {
  source  = "terraform-aws-modules/notify-slack/aws"
  version = "~> 2.0"

  sns_topic_name    = "my-topic-to-slack"
  slack_webhook_url = "https://hooks.slack.com/services/xxx/yyy/zzz"
  slack_channel     = "ops"
  slack_username    = "AWS Ops"
}