Skip to content

Instantly share code, notes, and snippets.

@sdlm

sdlm/policy.json Secret

Last active March 3, 2018 11:07
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 sdlm/d98c8d275f1e062430c9b4b98e239cc2 to your computer and use it in GitHub Desktop.
Save sdlm/d98c8d275f1e062430c9b4b98e239cc2 to your computer and use it in GitHub Desktop.
AWS policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1481924239005",
"Effect": "Allow",
"Action": [
"cloudformation:*",
"ec2:*",
"autoscaling:*",
"dynamodb:*",
"logs:*",
"sqs:*",
"iam:*",
"elasticloadbalancing:*",
"elasticfilesystem:*",
"lambda:*"
],
"Resource": [
"*"
]
}
]
}
or
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt100500",
"Effect": "Allow",
"Action": "*",
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment