The following example shows a template modified to support Azure eventual upload.
<config version="1">
<chain template="azure-blob-storage-v2"/>
<provider id="azure-blob-storage-v2" type="azure-blob-storage-v2">
<accountName>XXXXXXXX</accountName>
<accountKey>XXXXXXXX</accountKey>
<endpoint>https://<ACCOUNT_NAME>.blob.core.windows.net/</endpoint>
<container><NAME></container>
</provider>
</config> What's in the template?
The following snippet shows the default chain that uses azure-blob-storage as the binary provider:
<config version="1">
<chain> <!-- template="azure-blob-storage-v2" -->
<provider id="cache-fs" type="cache-fs">
<provider id="eventual" type="eventual">
<provider id="retry" type="retry">
<provider id="azure-blob-storage-v2" type="azure-blob-storage-v2"/>
</provider>
</provider>
</provider>
</chain>
</config>For details about the cache-fs provider, see Cached Filesystem Binary Provider.
For details about the eventual provider, see Eventual Binary Provider.
For details about the retry provider, see Retry Binary Provider.