alamb commented on issue #10720:
URL: https://github.com/apache/datafusion/issues/10720#issuecomment-2139358067

   > Is there an equivalent API in datafusion?
   
   The equivalent can be specified as part of each external table definition. 
For example https://datafusion.apache.org/user-guide/cli/datasources.html#s3
   
   
   ```sql
   CREATE EXTERNAL TABLE test
   STORED AS PARQUET
   OPTIONS(
       'aws.access_key_id' '******',
       'aws.secret_access_key' '******',
       'aws.region' 'us-east-2'
   )
   LOCATION 's3://bucket/path/file.parquet';
   ```
   
   This isn't quite as good as a secret that can be reused but it should work


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to