Skip to main content
Version: Next

Azure Blob Storage account Locations

The Azure Blob Storage account integration supports loading catalog entities from an blob storage account container. Entities can be added to static catalog configuration, or registered with the catalog-import plugin.

Configuration

To use this integration, add configuration to your app-config.yaml:

Using Azure active directory credentials:

integrations:
azureBlobStorage:
- accountName: ${ACCOUNT_NAME} # required
endpoint: ${CUSTOM_ENDPOINT} # custom endpoint will require either aadCredentials or sasToken
aadCredential:
clientId: ${CLIENT_ID}
tenantId: ${TENANT_ID}
clientSecret: ${CLIENT_SECRET}

Using Azure storage account SAS token:

integrations:
azureBlobStorage:
- accountName: ${ACCOUNT_NAME} # required
endpoint: ${CUSTOM_ENDPOINT} # custom endpoint will require either aadCredentials or sasToken
sasToken: ${SAS_TOKEN}

Using Azure storage account access key:

integrations:
azureBlobStorage:
- accountName: ${ACCOUNT_NAME} # required
endpoint: ${CUSTOM_ENDPOINT} # custom endpoint will require either aadCredentials or sasToken
accountKey: ${ACCOUNT_KEY}