Skip to content

Commit

Permalink
Merge pull request #299 from Azure/bugfix-incorrect-hsm-container-name
Browse files Browse the repository at this point in the history
Bugfix for incorrect hsm container name
  • Loading branch information
xpillons authored Apr 30, 2021
2 parents ce790ee + 2d3e374 commit 1830d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tf/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ resource "local_file" "global_variables" {
key_vault = azurerm_key_vault.azhop.name
sig_name = azurerm_shared_image_gallery.sig.name
lustre_hsm_storage_account = ( local.lustre_archive_account != null ? local.lustre_archive_account : azurerm_storage_account.azhop.name )
lustre_hsm_storage_container = ( local.lustre_archive_account != null ? local.configuration_yml["lustre"]["hsm"]["storage_container"] : azurerm_storage_account.azhop.name )
lustre_hsm_storage_container = ( local.lustre_archive_account != null ? local.configuration_yml["lustre"]["hsm"]["storage_container"] : azurerm_storage_container.lustre_archive.name )
}
)
filename = "${local.playbook_root_dir}/group_vars/all.yml"
Expand Down

0 comments on commit 1830d6c

Please sign in to comment.