diff --git a/modules/storage/storage_container.tf b/modules/storage/storage_container.tf new file mode 100644 index 0000000..8fe05eb --- /dev/null +++ b/modules/storage/storage_container.tf @@ -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" +} \ No newline at end of file