Skip to content

Instantly share code, notes, and snippets.

@ArthurN
Created November 10, 2014 21:08
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 ArthurN/f16ad0e6958a0af73d39 to your computer and use it in GitHub Desktop.
Save ArthurN/f16ad0e6958a0af73d39 to your computer and use it in GitHub Desktop.
AWS permissions
# From http://breakthebit.org/post/77505127462/up-your-security-on-amazon-aws
{
"Statement": [
{
"Sid": "AllowPublicRead",
"Action": [
"s3:ListBucket",
"s3:GetObject",
"s3:PutObject",
"s3:PutObjectAcl",
"s3:DeleteObject"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::timekiwi/*",
"arn:aws:s3:::timekiwi",
"arn:aws:s3:::timekiwi-dev/*",
"arn:aws:s3:::timekiwi-dev"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment