adding optional storage containers to storage module

This commit is contained in:
2025-03-19 10:08:53 -05:00
parent f528795350
commit a483cfc7ad

View File

@@ -1,6 +1,6 @@
resource "azurerm_storage_container" "storage_container" { resource "azurerm_storage_container" "storage_container" {
count = length(var.storage_containers) count = length(var.storage_containers)
name = "content" name = var.storage_containers[count.index]
storage_account_id = azurerm_storage_account.storage_account.id storage_account_id = azurerm_storage_account.storage_account.id
container_access_type = "private" container_access_type = "private"
} }