Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 0e83098

Browse files
authored
Merge pull request #190 from grafana/fix-azure-config
Fixed Azure account name/key config
2 parents c14c9a2 + 7ed53d6 commit 0e83098

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* [ENHANCEMENT] Enable support for HA in the Cortex Alertmanager #147
1313
* [ENHANCEMENT] Support `alertmanager.fallback_config` option in the Alertmanager. #179
1414
* [ENHANCEMENT] Add support for S3 block storage. #181
15-
* [ENHANCEMENT] Add support for Azure block storage. #182
15+
* [ENHANCEMENT] Add support for Azure block storage. #182 #190
1616
* [BUGFIX] Add support the `local` ruler client type #175
1717
* [BUGFIX] Fixes `ruler.storage.s3.url` argument for the Ruler. It used an incorrect argument. #177
1818

cortex/config.libsonnet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@
173173
azureBlocksStorageConfig:: $._config.genericBlocksStorageConfig {
174174
'blocks-storage.backend': 'azure',
175175
'blocks-storage.azure.container-name': $._config.blocks_storage_bucket_name,
176-
'blocks-storage.azure.account-name': $._config.blocks_storage_account_name,
177-
'blocks-storage.azure.account-key': $._config.blocks_storage_account_key,
176+
'blocks-storage.azure.account-name': $._config.blocks_storage_azure_account_name,
177+
'blocks-storage.azure.account-key': $._config.blocks_storage_azure_account_key,
178178
},
179179
// Blocks storage configuration, used only when 'blocks' storage
180180
// engine is explicitly enabled.

0 commit comments

Comments
 (0)