Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. {
  2. "Version": "2012-10-17",
  3. "Statement": [
  4. {
  5. "Effect": "Allow",
  6. "Action": [
  7. "s3:ListBucket",
  8. "s3:GetBucketLocation"
  9. ],
  10. "Resource": "arn:aws:s3:::BUCKET_NAME"
  11. },
  12. {
  13. "Effect": "Allow",
  14. "Action": [
  15. "s3:PutObject",
  16. "s3:GetObject"
  17. ],
  18. "Resource": [
  19. "arn:aws:s3:::BUCKET_NAME/*",
  20. "arn:aws:s3:::BUCKET_NAME/SUB/FOLDER/*"
  21.  
  22. }
  23. ]
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement