Skip to content

Instantly share code, notes, and snippets.

@jeffski
Last active June 23, 2017 04:58
Show Gist options
  • Save jeffski/4cd0ff07e782f9338535581a78a40323 to your computer and use it in GitHub Desktop.
Save jeffski/4cd0ff07e782f9338535581a78a40323 to your computer and use it in GitHub Desktop.
Simple IAM policy to allow a user to upload to an S3 bucket
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:PutObject"
],
"Resource": [
"arn:aws:s3:::UserUploads/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment