Skip to content

Instantly share code, notes, and snippets.

@deegloo
Last active October 24, 2018 12:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deegloo/9a01b4cdc24bd876c2d937f6b3a77eaf to your computer and use it in GitHub Desktop.
Save deegloo/9a01b4cdc24bd876c2d937f6b3a77eaf to your computer and use it in GitHub Desktop.
AWS Lambda which produces SNS notifications
NotifierLambda:
Type: AWS::Serverless::Function
Properties:
FunctionName: 'notifier'
Handler: index.handler
CodeUri: 's3://deegloo-blog-post/schedule-notify-trigger/notifier-partial.zip'
Runtime: nodejs6.10
MemorySize: 1536
Timeout: 300
Environment:
Variables:
SOME_VARIABLE: 'some_value'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment