@@ -65,7 +65,7 @@ In the `config_sample.yml` file, you'll see several sample flavors:
65651 . ` local ` : stores data on the local filesystem
66661 . ` s3 ` : stores data in an AWS S3 bucket
67671 . ` ceph-s3 ` : stores data in a Ceph cluster via a Ceph Object Gateway, using the S3 API
68- 1 . ` azure ` : stores data in an Microsoft Azure Blob Storage
68+ 1 . ` azureblob ` : stores data in an Microsoft Azure Blob Storage
69691 . ` dev ` : basic configuration using the ` local ` flavor
70701 . ` test ` : used by unit tests
71711 . ` prod ` : production configuration (basically a synonym for the ` s3 ` flavor)
@@ -323,6 +323,28 @@ prod:
323323 s3_secret_key: xdDowwlK7TJajV1Y7EoOZrmuPEJlHYcNP2k4j49T
324324` ` `
325325
326+ # ## storage: azureblob
327+
328+ In order to use Microsoft Azure Blob Storage Service, you need to create a storage account
329+ from Azure Management Portal or other management scripts.
330+
331+ 1. `azure_storage_account_name` : string, storage account name
332+ 1. `azure_storage_account_key` : string, storage account key
333+ 1. `azure_storage_container` : string, container name to be used or created
334+ 1. `azure_use_https` : boolean, (default:true) use HTTPS for communication
335+
336+ Example :
337+
338+ ` ` ` yaml
339+ prod:
340+ storage: azureblob
341+ azure_storage_account_name: contoso
342+ azure_storage_account_key: Fb8cgp___YOUR_KEY___/o8isRdsuHqrHF==
343+ azure_storage_container: registry
344+ azure_use_https: true
345+ ` ` `
346+
347+
326348Your own config
327349===============
328350
0 commit comments