Skip to content

Instantly share code, notes, and snippets.

@jawngee
Created December 12, 2018 17:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jawngee/72ceb2c114f4c5aa043d5f834e017c08 to your computer and use it in GitHub Desktop.
Save jawngee/72ceb2c114f4c5aa043d5f834e017c08 to your computer and use it in GitHub Desktop.
Imgix IAM Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetObject",
"s3:ListBucket",
"s3:GetBucketLocation"
],
"Resource": [
"arn:aws:s3:::YOURBUCKET/*",
"arn:aws:s3:::YOURBUCKET"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment