Im trying to make files on my s3 bucket (CSS JS files) accessible to a Django application running in heroku.
I think I have the settings.py configured correctly.
However when I try to make changes to permissions in the S3 bucket i get access denied.

I added cors and bucket policy is set to public.
Ultimately when I load the application from heroku Im getting 403 errors when trying to access the static files.
Bucket policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AddPerm",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:*",
"Resource": "arn:aws:s3:::NameOfBucket/*"
}
]
}
CORs configuration:
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<AllowedHeader>Authorization</AllowedHeader>
</CORSRule>
</CORSConfiguration>
How can I get the permissions to make changes in the s3 bucket please?