On AWS S3 a bucket policy needs to be specified to allow access to an object in the bucket.
I would like to allow anybody to GET any ressource inside the bucket photos.
The bucket policy would look like this:
{
"Version":"2012-10-17",
"Statement":[
{
"Sid":"AddPerm",
"Effect":"Allow",
"Principal": "*",
"Action":["s3:GetObject"],
"Resource":["arn:aws:s3:::photos/*"]
}
]
}
How to set the bucket policy on Switchengines’s Object Storage?- Would appreciate your help.