0.7.0 • Published 8 months ago

@ez4/aws-queue v0.7.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

EZ4: AWS Queue

It provides all the components to manage simple queue services on AWS.

Getting started

Install

npm install @ez4/aws-queue -D

Permission

Ensure the user performing deployments has the permissions below:

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "QueueManagement",
      "Effect": "Allow",
      "Action": [
        "sqs:GetQueueUrl",
        "sqs:CreateQueue",
        "sqs:SetQueueAttributes",
        "sqs:DeleteQueue",
        "sqs:TagQueue",
        "sqs:UntagQueue"
      ],
      "Resource": ["arn:aws:sqs:*:{account-id}:{prefix}-*"]
    },
    {
      "Sid": "QueueMappingManagement",
      "Effect": "Allow",
      "Action": [
        "lambda:CreateEventSourceMapping",
        "lambda:GetEventSourceMapping",
        "lambda:UpdateEventSourceMapping",
        "lambda:DeleteEventSourceMapping"
      ],
      "Resource": ["*"]
    }
  ]
}

License

MIT License

0.7.0

8 months ago

0.6.0

9 months ago

0.5.0

9 months ago

0.4.0

9 months ago

0.3.0

9 months ago

0.2.0

10 months ago

0.1.0

10 months ago

0.0.0

10 months ago