Skip to content

Instantly share code, notes, and snippets.

@vinodc
Last active August 29, 2015 14:26
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 vinodc/6543a9c48fbe41ff7d6a to your computer and use it in GitHub Desktop.
Save vinodc/6543a9c48fbe41ff7d6a to your computer and use it in GitHub Desktop.
Kloudless Upload Location IAM Policy JSON
{
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetObject",
"s3:GetObjectAcl",
"s3:PutObject",
"s3:PutObjectAcl",
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::test-bucket",
"arn:aws:s3:::test-bucket/*"
]
},
{
"Effect": "Allow",
"Action": "s3:ListAllMyBuckets",
"Resource": "arn:aws:s3:::*"
}
]
}
@vinodc
Copy link
Author

vinodc commented Aug 3, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment