Skip to content

Instantly share code, notes, and snippets.

@afquinterog
Last active December 11, 2019 14:09
Show Gist options
  • Save afquinterog/7670ca852e10462efc53b535951aec5f to your computer and use it in GitHub Desktop.
Save afquinterog/7670ca852e10462efc53b535951aec5f to your computer and use it in GitHub Desktop.
Aws policy to allow write logs to cloudwatch
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogStream",
"logs:PutLogEvents",
"logs:DescribeLogStreams"
],
"Resource": [
"arn:aws:logs:us-east-1:847662935904:log-group:cloudwatch-rails:*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment