Currently need to run something like this in order for collectstatic and s3 in general to work on heroku:
aws configure
aws s3api put-public-access-block --bucket <BUCKET_NAME> --public-access-block-configuration BlockPublicAcls=FALSE,IgnorePublicAcls=FALSE,BlockPublicPolicy=FALSE,RestrictPublicBuckets=FALSE
aws s3api put-bucket-ownership-controls \
--bucket <BUCKET_NAME> \
--ownership-controls="Rules=[{ObjectOwnership=BucketOwnerPreferred}]"