serverless-plugin-lambda-dead-letter icon indicating copy to clipboard operation
serverless-plugin-lambda-dead-letter copied to clipboard

serverless plugin that can configure a lambda with a dead letter queue or topic

Results 15 serverless-plugin-lambda-dead-letter issues
Sort by recently updated
recently updated
newest added

Receiving this error after trying to use this plugin: ``` Serverless Error ---------------------------------------- Configuration error at 'functions['sessions-stream-listener']': unrecognized property 'deadLetter' Get Support -------------------------------------------- Docs: docs.serverless.com Bugs: github.com/serverless/serverless/issues Issues: forum.serverless.com Your...

This is to fix the following error: `Configuration error at 'functions.': unrecognized property 'deadLetter'`

Can I use this plugin for creating FIFO dlq?

Serverless is throwing a warning when it validates its configuration before deployment: ``` Serverless: Configuration warning at 'functions.foo': unrecognized property 'deadLetter' ``` Excerpt from `serverless.yml`: ```yml functions: foo: handler: src/handlers/events/foo.bar...

I am trying to use the DLQ plugin `serverless-plugin-lambda-dead-letter` as explained in the blog https://www.serverless.com/plugins/serverless-plugin-lambda-dead-letter, but when I test things locally using serverless-offline, DLQ is not created Here is my...

Hi, I found it not possible to send messages to the DLQ since the execution role of the lambda doesn't include SendMessage policy for the dead letter queue. It is...

SQS recently added support for 'fifo' queues. If Cloudformation supports this perhaps the plugin can support it to. Use a regex match `.fifo$` to see if the queue name ends...

Quick question... Should this plugin be installed as a dev dependency?

### Summary Creating a deadletter queue config to an empty stack / new lambda fails. But adding dead letter queue to existing lambda succeeds. ### Environment ``` "serverless-plugin-lambda-dead-letter": "1.2.1", "aws-sdk":...

First of all, great plugin, great work! I was wondering if anyone managed to get this working while using the `serverless-step-functions` plugin. I'm using both those plugins and unfortunately it...