0

I'd like the files I upload to S3 with Filepicker.io to be public. Is this possible?

Pavlo
  • 43,301
  • 14
  • 77
  • 113
nickponline
  • 25,354
  • 32
  • 99
  • 167

1 Answers1

0

Yes you can either make the bucket itself publicly accessible:

enter image description here

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