Last active
August 29, 2015 14:11
-
-
Save double16/f6e79ace05fd7b281590 to your computer and use it in GitHub Desktop.
Amazon S3 user policy for uploading via Grails cdn-asset-pipeline plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": "s3:*", | |
"Resource": [ | |
"arn:aws:s3:::mybucket/*”, "arn:aws:s3:::mybucket" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment