Skip to content

Commit

Permalink
Merge pull request #190 from grafana/fix-azure-config
Browse files Browse the repository at this point in the history
Fixed Azure account name/key config
  • Loading branch information
pracucci authored Sep 28, 2020
2 parents c14c9a2 + 7ed53d6 commit 0e83098
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* [ENHANCEMENT] Enable support for HA in the Cortex Alertmanager #147
* [ENHANCEMENT] Support `alertmanager.fallback_config` option in the Alertmanager. #179
* [ENHANCEMENT] Add support for S3 block storage. #181
* [ENHANCEMENT] Add support for Azure block storage. #182
* [ENHANCEMENT] Add support for Azure block storage. #182 #190
* [BUGFIX] Add support the `local` ruler client type #175
* [BUGFIX] Fixes `ruler.storage.s3.url` argument for the Ruler. It used an incorrect argument. #177

Expand Down
4 changes: 2 additions & 2 deletions cortex/config.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@
azureBlocksStorageConfig:: $._config.genericBlocksStorageConfig {
'blocks-storage.backend': 'azure',
'blocks-storage.azure.container-name': $._config.blocks_storage_bucket_name,
'blocks-storage.azure.account-name': $._config.blocks_storage_account_name,
'blocks-storage.azure.account-key': $._config.blocks_storage_account_key,
'blocks-storage.azure.account-name': $._config.blocks_storage_azure_account_name,
'blocks-storage.azure.account-key': $._config.blocks_storage_azure_account_key,
},
// Blocks storage configuration, used only when 'blocks' storage
// engine is explicitly enabled.
Expand Down

0 comments on commit 0e83098

Please sign in to comment.