Skip to content

Instantly share code, notes, and snippets.

@ncole458
Created January 22, 2020 10:11
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 ncole458/7095fde9b023683ce907d251a63b1e6e to your computer and use it in GitHub Desktop.
Save ncole458/7095fde9b023683ce907d251a63b1e6e to your computer and use it in GitHub Desktop.
AWS cron perms
# Inline policy for aws-elasticbeanstalk-ec2-role
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1409855610000",
"Effect": "Allow",
"Action": [
"autoscaling:DescribeAutoScalingGroups"
],
"Resource": [
"*"
]
},
{
"Sid": "Stmt1409855649000",
"Effect": "Allow",
"Action": [
"ec2:DescribeTags"
],
"Resource": [
"*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment