From a483cfc7ade651060db1db5d4f80a8842b31d753 Mon Sep 17 00:00:00 2001 From: Noah Spannbauer Date: Wed, 19 Mar 2025 10:08:53 -0500 Subject: [PATCH] adding optional storage containers to storage module --- modules/storage/storage_container.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/storage/storage_container.tf b/modules/storage/storage_container.tf index 8fe05eb..2800d15 100644 --- a/modules/storage/storage_container.tf +++ b/modules/storage/storage_container.tf @@ -1,6 +1,6 @@ resource "azurerm_storage_container" "storage_container" { count = length(var.storage_containers) - name = "content" + name = var.storage_containers[count.index] storage_account_id = azurerm_storage_account.storage_account.id container_access_type = "private" } \ No newline at end of file