document AWS bucket policy

This commit is contained in:
Matthias Kretschmann 2017-03-01 14:55:11 +01:00
parent bf139c6bb6
commit 74e0d93c3f
Signed by: m
GPG Key ID: BD3C1F3EDD7831FC
1 changed files with 16 additions and 0 deletions

16
_aws/bucket-policy.json Normal file
View File

@ -0,0 +1,16 @@
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicReadGetObject",
"Effect": "Allow",
"Principal": "*",
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::www.bigchaindb.com/*"
]
}
]
}