diff --git a/modules/azure/storage-account/buildingblock/main.tf b/modules/azure/storage-account/buildingblock/main.tf index 938cf847..c51be0fd 100644 --- a/modules/azure/storage-account/buildingblock/main.tf +++ b/modules/azure/storage-account/buildingblock/main.tf @@ -14,9 +14,10 @@ resource "azurerm_resource_group" "storage_account_rg" { } resource "azurerm_storage_account" "storage_account" { - name = "${var.storage_account_name}${random_string.resource_code.result}" - resource_group_name = azurerm_resource_group.storage_account_rg.name - location = azurerm_resource_group.storage_account_rg.location - account_tier = "Standard" - account_replication_type = "GRS" -} \ No newline at end of file + name = "${var.storage_account_name}${random_string.resource_code.result}" + resource_group_name = azurerm_resource_group.storage_account_rg.name + location = azurerm_resource_group.storage_account_rg.location + account_tier = "Standard" + account_replication_type = "GRS" + allow_nested_items_to_be_public = true +}