From 3b99f1ad124bcf5d0e44764028bd478b674ac0ba Mon Sep 17 00:00:00 2001 From: Bernhard Millauer Date: Tue, 7 Sep 2021 17:17:35 +0200 Subject: [PATCH] Correct the indention for azure configuration The snippet part for storage_config was indented into schema_config which is wrong. --- docs/sources/storage/_index.md | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/docs/sources/storage/_index.md b/docs/sources/storage/_index.md index 5d254ddba97c..9c6ab5123668 100644 --- a/docs/sources/storage/_index.md +++ b/docs/sources/storage/_index.md @@ -298,20 +298,20 @@ schema_config: object_store: azure schema: v11 store: boltdb-shipper - storage_config: - azure: - # For the account-key, see docs: https://docs.microsoft.com/en-us/azure/storage/common/storage-account-keys-manage?tabs=azure-portal - account_key: - # Your azure account name - account_name: - # See https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blobs-introduction#containers - container_name: - request_timeout: 0 - boltdb_shipper: - active_index_directory: /data/loki/boltdb-shipper-active - cache_location: /data/loki/boltdb-shipper-cache - cache_ttl: 24h - shared_store: azure - filesystem: - directory: /data/loki/chunks -``` \ No newline at end of file +storage_config: + azure: + # For the account-key, see docs: https://docs.microsoft.com/en-us/azure/storage/common/storage-account-keys-manage?tabs=azure-portal + account_key: + # Your azure account name + account_name: + # See https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blobs-introduction#containers + container_name: + request_timeout: 0 + boltdb_shipper: + active_index_directory: /data/loki/boltdb-shipper-active + cache_location: /data/loki/boltdb-shipper-cache + cache_ttl: 24h + shared_store: azure + filesystem: + directory: /data/loki/chunks +```