Skip to content

Instantly share code, notes, and snippets.

@mauricios
Last active May 30, 2017 22:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mauricios/fb2763883c5fce4ade25251757878285 to your computer and use it in GitHub Desktop.
Save mauricios/fb2763883c5fce4ade25251757878285 to your computer and use it in GitHub Desktop.
AWS CloudWatch Logs IAM policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents",
"logs:DescribeLogStreams"
],
"Resource": [
"arn:aws:logs:*:*:*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment