1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-06-15 17:13:17 +02:00

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

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/*"
]
}
]
}