Skip to content

Instantly share code, notes, and snippets.

@hemmrich
Created November 16, 2016 02:03
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 hemmrich/062e172f7396112214a2d948b5406bcb to your computer and use it in GitHub Desktop.
Save hemmrich/062e172f7396112214a2d948b5406bcb to your computer and use it in GitHub Desktop.
AWS_CloudWatchLogs_EC2_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