I am using https://github.com/flagrow/upload to upload the files on aws s3, files get uploaded but with the private access, hence UI is not able to render them. How to make this work ? Or I need to make the directory on S3 public?
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AddPerm",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::my_bucket_name/*"
}
]
}
Did this to make the repo public
But images are still not showing up on ui