Azure Blob Storage Destination Plugin
Latest: v1.0.0This destination plugin lets you sync data from a CloudQuery source to remote Azure Blob Storage storage in various formats such as CSV, JSON.
Authentication
Authenitcation is similar to Azure CLI. See also azure source plugin for more information.
Example
This example configures a Azure blob storage destination, to create CSV files in https://cqdestinationazblob.blob.core.windows.net/test/path/to/files
. Note that the Azure blob storage plugin only supports append
write-mode.
The (top level) spec section is described in the Destination Spec Reference.
kind: destination
spec:
name: "azblob"
path: "cloudquery/azblob"
version: "v1.0.0"
write_mode: "append" # this plugin only supports 'append' mode
spec:
storage_account: "cqdestinationazblob"
container: "test"
path: "path/to/files"
format: "csv"
Azure Blob Spec
This is the (nested) spec used by the CSV destination Plugin.
-
storage_account
(string) (required)Storage account where to sync the files.
-
container
(string) (required)Storage container inside the storage account where to sync the files.
-
path
(string) (required)Path to where the files will be uploaded in the above bucket.
-
format
(string) (required)Format of the output file.
json
andcsv
are supported.