Skip to content

Instantly share code, notes, and snippets.

@rhysgodfrey
Created September 27, 2014 10:21
Show Gist options
  • Save rhysgodfrey/8f1d1f9b374773e22356 to your computer and use it in GitHub Desktop.
Save rhysgodfrey/8f1d1f9b374773e22356 to your computer and use it in GitHub Desktop.
{
"Statement":[
{
"Effect":"Allow",
"Action":[
"s3:ListAllMyBuckets"
],
"Resource":"arn:aws:s3:::*"
},
{
"Effect":"Allow",
"Action":[
"s3:ListBucket",
"s3:GetBucketLocation"
],
"Resource":"arn:aws:s3:::s3-sql-backups"
},
{
"Effect":"Allow",
"Action":[
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject"
],
"Resource":"arn:aws:s3:::s3-sql-backups/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment