A Config rule that checks whether an AWS Lambda function is configured with a dead-letter queue. The rule is NON_COMPLIANT if the Lambda function is not configured with a dead-letter queue
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
ConfigRule:
Type: 'AWS::Config::ConfigRule'
Properties:
ConfigRuleName: lambda-dlq-check
Scope:
ComplianceResourceTypes:
- 'AWS::Lambda::Function'
Description: >-
A Config rule that checks whether an AWS Lambda function is configured
with a dead-letter queue. The rule is NON_COMPLIANT if the Lambda
function is not configured with a dead-letter queue
Source:
Owner: AWS
SourceIdentifier: LAMBDA_DLQ_CHECK
Parameters: {}
Metadata: {}
Conditions: {}
Configuration Source: AWS Documentation
Additional Documentation: