Skip to content

Instantly share code, notes, and snippets.

@DeviaVir
Created October 28, 2015 14:58
Show Gist options
  • Save DeviaVir/5a859def89d7094eafe9 to your computer and use it in GitHub Desktop.
Save DeviaVir/5a859def89d7094eafe9 to your computer and use it in GitHub Desktop.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "upload",
"Effect": "Allow",
"Principal": {
"AWS": [
"CUSTOMER-ARN"
]
},
"Action": [
"s3:PutObjectAcl",
"s3:PutObject"
],
"Resource": "arn:aws:s3:::MYBUCKET/*"
}
],
"Statement": [
{
"Sid": "ListBucket",
"Effect": "Allow",
"Principal": {
"AWS": [
"CUSTOMER-ARN"
]
},
"Action": [
"s3:ListBucket"
],
"Resource": "arn:aws:s3:::MYBUCKET/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment