Skip to content

Instantly share code, notes, and snippets.

@esasse
Created August 26, 2013 21:37
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 esasse/6346957 to your computer and use it in GitHub Desktop.
Save esasse/6346957 to your computer and use it in GitHub Desktop.
Minimum permission required to upload files to S3 bucket
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"s3:PutObject"
],
"Sid": "Stmt1377549922000",
"Resource": [
"arn:aws:s3:::bucket-name/*"
],
"Effect": "Allow"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment