Skip to content

Instantly share code, notes, and snippets.

@manavskohli
Last active February 14, 2019 18:41
Show Gist options
  • Save manavskohli/139199b81b1ef98942e4767109885516 to your computer and use it in GitHub Desktop.
Save manavskohli/139199b81b1ef98942e4767109885516 to your computer and use it in GitHub Desktop.
# ...
resource "aws_s3_bucket_notification" "object_create_sns" {
bucket = "${aws_s3_bucket.source-bucket.id}"
topic {
topic_arn = "${aws_sns_topic.s3_fanout.arn}"
events = ["s3:ObjectCreated:*"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment