Skip to content

Instantly share code, notes, and snippets.

@coldclimate
Created March 24, 2016 12:33
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 coldclimate/7f1bfd0e96af8582cf72 to your computer and use it in GitHub Desktop.
Save coldclimate/7f1bfd0e96af8582cf72 to your computer and use it in GitHub Desktop.
AWS S3 upload only to specific bucket
# I always have to look this up. You need PutObjectAcl as well as putting the object itself.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1458821885000",
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:PutObjectAcl"
],
"Resource": [
"arn:aws:s3:::bucket-name/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment