Skip to content

Instantly share code, notes, and snippets.

@brpaz
Created January 31, 2015 17:35
Show Gist options
  • Save brpaz/69e050899f355b44bcdd to your computer and use it in GitHub Desktop.
Save brpaz/69e050899f355b44bcdd to your computer and use it in GitHub Desktop.
AWS S3 Bucket policy #aws #aws-s3
"Statement": [
{
"Effect": "Allow",
"Action": "s3:ListAllMyBuckets",
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::4ormat-knowledge-base",
"arn:aws:s3:::4ormat-knowledge-base/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment