Skip to content

Instantly share code, notes, and snippets.

@khlbrg
Created February 18, 2018 18:20
Show Gist options
  • Save khlbrg/3cd1e507b57682848421af27986adbe6 to your computer and use it in GitHub Desktop.
Save khlbrg/3cd1e507b57682848421af27986adbe6 to your computer and use it in GitHub Desktop.
Lambda SES and Cloudwatch
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Resource": "arn:aws:logs:*:*:*"
},
{
"Effect": "Allow",
"Action": "ses:*",
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment