Skip to content

Commit 729a7a6

Browse files
committed
improved README
1 parent 2636749 commit 729a7a6

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
node_modules/
2+
output.yml

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
11
# Example: SQS and Lambda
22

33
This repository contains example code which is integrating SQS and Lambda as described in our blog post [Integrate SQS and Lambda: serverless architecture for asynchronous workloads](https://cloudonaut.io/integrate-sqs-and-lambda-serverless-architecture-for-asynchronous-workloads/).
4+
5+
## Deploy
6+
7+
Use the following command to deploy the example. Replace `<YOUR_NICKNAME>` with your nickname.
8+
9+
```
10+
aws s3 mb s3://sqs-lambda-<YOUR_NICKNAME>
11+
12+
aws cloudformation package --template-file cloudformation.yml --s3-bucket sqs-lambda-<YOUR_NICKNAME> --output-template-file output.yml && aws cloudformation deploy --template-file output.yml --stack-name sqs-lambda-example --capabilities CAPABILITY_IAM
13+
```

0 commit comments

Comments
 (0)