-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1911d4
commit 11b3006
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -150,6 +150,26 @@ CUBEJS_DB_EXPORT_GCS_CREDENTIALS=<BASE64_ENCODED_SERVICE_CREDENTIALS_JSON> | |
CUBEJS_DB_EXPORT_INTEGRATION=gcs_int | ||
``` | ||
|
||
#### Azure | ||
|
||
To use Azure Blob Storage as an export bucket, follow [the Snowflake guide on | ||
using a Snowflake storage integration (Option 1)][snowflake-docs-azure]. | ||
Take note of the integration name (`azure_int` from the example link) | ||
as you'll need it to configure Cube. | ||
|
||
[Retrieve the storage account access key][azure-bs-docs-get-key] from your Azure | ||
account. | ||
|
||
Once the Snowflake integration is set up, configure Cube using the following: | ||
|
||
```dotenv | ||
CUBEJS_DB_EXPORT_BUCKET_TYPE=azure | ||
CUBEJS_DB_EXPORT_BUCKET=wasbs://[email protected] | ||
CUBEJS_DB_EXPORT_BUCKET_AZURE_KEY=<AZURE_STORAGE_ACCOUNT_ACCESS_KEY> | ||
CUBEJS_DB_EXPORT_INTEGRATION=azure_int | ||
``` | ||
|
||
|
||
## SSL | ||
|
||
Cube does not require any additional configuration to enable SSL as Snowflake | ||
|
@@ -176,3 +196,5 @@ connections are made over HTTPS. | |
[snowflake-docs-warehouse]: | ||
https://docs.snowflake.com/en/user-guide/warehouses.html | ||
[snowflake-format-2]: https://docs.snowflake.com/en/user-guide/admin-account-identifier#format-2-account-locator-in-a-region | ||
[snowflake-docs-azure]: https://docs.snowflake.com/en/user-guide/data-load-azure-config#option-1-configuring-a-snowflake-storage-integration | ||
[azure-bs-docs-get-key]: https://docs.microsoft.com/en-us/azure/storage/common/storage-account-keys-manage?toc=%2Fazure%2Fstorage%2Fblobs%2Ftoc.json&tabs=azure-portal#view-account-access-keys |