Skip to content

Instantly share code, notes, and snippets.

@mcj-la
Last active September 12, 2021 15:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcj-la/9b316a98b66e4d4c8a5a51a5fdd6db87 to your computer and use it in GitHub Desktop.
Save mcj-la/9b316a98b66e4d4c8a5a51a5fdd6db87 to your computer and use it in GitHub Desktop.
IAM Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Resource": "arn:aws:logs:*:*:*"
},
{
"Effect": "Allow",
"Action": [
"ec2:Stop*"
],
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment