You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rather than needing to create, manage and pass an AWS Access and Secret key for the Duckdb driver to read from S3, it should look for credentials in the default provider chain. This is best practice and helps increase the security posture of Cube.
This can be fixed by running the following against duckdb:
CREATE SECRET (
TYPE S3,
PROVIDER CREDENTIAL_CHAIN
);
The text was updated successfully, but these errors were encountered:
Rather than needing to create, manage and pass an AWS Access and Secret key for the Duckdb driver to read from S3, it should look for credentials in the default provider chain. This is best practice and helps increase the security posture of Cube.
This can be fixed by running the following against duckdb:
The text was updated successfully, but these errors were encountered: