Skip to content

Instantly share code, notes, and snippets.

@kalamay
Created June 24, 2014 22:02
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 kalamay/8ca0c59e9fd2880e610d to your computer and use it in GitHub Desktop.
Save kalamay/8ca0c59e9fd2880e610d to your computer and use it in GitHub Desktop.
Minimum permissions for Imgix S3 sources
{
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetObject"
],
"Resource": "arn:aws:s3:::mybucket/*"
},
{
"Effect": "Allow",
"Action": [
"s3:GetBucketLocation"
],
"Resource": "arn:aws:s3:::mybucket"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment