@sls-next/aws-sqs
v3.7.0
Published
Deploy SQS queues to AWS in seconds with [Serverless Components](https://github.com/serverless/components).
Readme
aws-sqs
Deploy SQS queues to AWS in seconds with Serverless Components.
1. Install
$ npm install -g serverless2. Create
$ mkdir my-function && cd my-functionthe directory should look something like this:
|- code
|- handler.js
|- package.json # optional
|- serverless.yml
|- .env # your AWS api keys# .env
AWS_ACCESS_KEY_ID=XXX
AWS_SECRET_ACCESS_KEY=XXX3. Configure
# serverless.yml
myQueue:
component: "@serverless/aws-sqs"4. Deploy
$ serverlessCredits
This package was originally implemented by DaySmart. I decided to fork it and bring it into this monorepo because it wasn't being maintained anymore
