adding optional storage containers to storage module

This commit is contained in:
2025-03-19 09:48:05 -05:00
parent 0e8423fece
commit e0a9727b78

View File

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