Skip to content

Commit

Permalink
need the right stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcruse3 committed Oct 18, 2023
1 parent 2caf237 commit 6016853
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions examples/sns-sqs/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions examples/sns-sqs/serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,17 @@ custom:
functions:
v1-sns-handler:
name: ${self:provider.stackTags.name}-v1-sns-handler
handler: app/handler.handle
handler: app/sns_handler.handle
description: example sns handler
memorySize: 256
events:
- sns:
topicName: ${self:provider.stackTags.name}
arn:
Fn::GetAtt: [ ExampleSNS, 'Arn' ]
Fn::GetAtt: [ ExampleSNS, 'TopicArn' ]
v1-sqs-handler:
name: ${self:provider.stackTags.name}-v1-sqs-handler
handler: app/handler.handle
handler: app/sqs_handler.handle
description: example sqs handler
memorySize: 256
events:
Expand Down

0 comments on commit 6016853

Please sign in to comment.