Last active
July 28, 2020 07:16
-
-
Save admhpr/9e833079863c1d40ec52d4f0b149fd87 to your computer and use it in GitHub Desktop.
S3 -> SNS topic
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Resources: | |
# ===================== SNS ===================== | |
DataframeCreatedSnsTopic: | |
Type: AWS::SNS::Topic | |
Properties: | |
DisplayName: "Topic to notify functions of dataframe creation" | |
TopicName: DataframeCreatedSnsTopic | |
# ===================== SNS Policy ===================== | |
DataframeCreatedSnsTopic: | |
Type: AWS::SNS::TopicPolicy | |
Properties: | |
PolicyDocument: | |
Version: "2012-10-17" | |
Statement: | |
- Sid: AllowBucketToPushNotificationEffect | |
Effect: Allow | |
Principal: | |
Service: s3.amazonaws.com | |
Action: sns:Publish | |
Resource: arn:aws:sns:${env:REGION}:${env:AWS_ACCOUNT}:* | |
Topics: | |
- Ref: DataframeCreatedSnsTopic | |
# ===================== S3 ===================== | |
WorkingStorage: | |
Type: AWS::S3::Bucket | |
DeletionPolicy: Retain | |
Properties: | |
BucketName: ${self:custom.workingBucket} | |
NotificationConfiguration: | |
TopicConfigurations: | |
- Event: s3:ObjectCreated:* | |
Filter: | |
S3Key: | |
Rules: | |
- Name: suffix | |
Value: '.json' | |
Topic: | |
Ref: DataframeCreatedSnsTopic |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment