I have a S3 URL to a public file similar to the following URL example: s3://test-public/new/solution/file.csv (this is not the actual link . just a close example to the one i'm using)
I am able to read the file using s3fs module in a python script, without placing any AWS key ID, nor AWS Secret Key, as follows:
with fs.open('test-public/new/solution/file.csv'):
however, when i try to read the same file from S3 to Snowflake stage or from Table -> Load table, Snowlake reports that AWS key ID, and AWS Secret Key are missing, though these fields are optional
Is there a way i can read a public file from S3 into a snowflake table without any AWS credentials (as with s3fs) ?