From e9764b38abe6ec6b5b29978230682dec16d819f3 Mon Sep 17 00:00:00 2001 From: Xavier Pillons Date: Wed, 11 Oct 2023 09:24:48 +0200 Subject: [PATCH] remove lustre hsm container (#1731) --- tf/main.tf | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tf/main.tf b/tf/main.tf index 6930e0a35..716b76736 100644 --- a/tf/main.tf +++ b/tf/main.tf @@ -100,15 +100,6 @@ resource "azurerm_storage_account" "azhop" { } } -# create a container for the lustre archive if not using an existing account -resource "azurerm_storage_container" "lustre_archive" { - count = (local.lustre_archive_account == null ? ( local.lustre_enabled ? 1 : 0) : 0) - name = "lustre" - storage_account_name = azurerm_storage_account.azhop.name - container_access_type = "private" -} - - # This is the azhop telemetry deployment that is only created if telemetry is enabled. # It is deployed to the resource group resource "azurerm_resource_group_template_deployment" "telemetry_azhop" {