Files
noahspan-terraform/modules/storage/storage_container.tf

6 lines
242 B
HCL

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"
}