From: Hans-Christoph Steiner Date: Thu, 15 Sep 2016 09:35:38 +0000 (+0200) Subject: example file for public read only S3 bucket policy X-Git-Tag: 0.8~159^2~8 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=b5e57a7aa67033f1ba0bdb351d0563a384dd3d63;p=fdroidserver.git example file for public read only S3 bucket policy This is the locked down S3 policy as created by Benetech for their Secure App Generator project. --- diff --git a/examples/public-read-only-s3-bucket-policy.json b/examples/public-read-only-s3-bucket-policy.json new file mode 100644 index 00000000..9316bbe0 --- /dev/null +++ b/examples/public-read-only-s3-bucket-policy.json @@ -0,0 +1,11 @@ +{ + "Version":"2012-10-17", + "Statement":[ + {"Sid":"AddPerm", + "Effect":"Allow", + "Principal":"*", + "Action":"s3:GetObject", + "Resource":"arn:aws:s3:::examplebucket/fdroid/*" + } + ] +}