I'd like the files I upload to S3 with Filepicker.io to be public. Is this possible?
Asked
Active
Viewed 123 times
1 Answers
0
Yes you can either make the bucket itself publicly accessible:
or grant permissions to everyone on a specific subfolder/object of your s3 Bucket by adding the following bucket policy:
{
"Version": "2012-10-17",
"Id": "123",
"Statement": [
{
"Sid": "",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:**",
"Resource": "arn:aws:s3:::mybucket/public/*"
}
]
}

markA
- 1,609
- 2
- 17
- 26