Skip to content

Lambda function (python 3.7) that parses cloudwatch log event data and sends relevant log data to SNS topic

Notifications You must be signed in to change notification settings

davoclock/aws-cloudwatch-log-mailer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

aws-cloudwatch-log-mailer

Lambda function (python 3.7) that parses cloudwatch log event data and sends relevant log data to SNS topic

screenshot

Requirements:

  1. Lambda function must have the following IAM policy for publishing to SNS:
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "sns:Publish",
            "Resource": "arn:aws:sns:us-east-1:[AWS ACCOUNT ID]:[SNS TOPIC NAME]"
        }
    ]
}

Output Example

screenshot

About

Lambda function (python 3.7) that parses cloudwatch log event data and sends relevant log data to SNS topic

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages