Skip to content

Instantly share code, notes, and snippets.

@nmendes
Last active June 27, 2016 15:27
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nmendes/9053e1c3347dec7741d8 to your computer and use it in GitHub Desktop.
Save nmendes/9053e1c3347dec7741d8 to your computer and use it in GitHub Desktop.
Example of a Amazon S3 User Policy to use with the ProcessWire AmazonS3Cloudfront Module
{
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:DeleteObject",
"s3:GetObject",
"s3:PutObject",
"s3:PutObjectAcl"
],
"Resource": [
"arn:aws:s3:::YOURBUCKETNAME/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment