Skip to content

Commit 995ec7a

Browse files
committed
Another fix
1 parent 6b9d715 commit 995ec7a

File tree

1 file changed

+2
-1
lines changed
  • scenarios/AksOpenAiTerraform/terraform/modules/storage_account

1 file changed

+2
-1
lines changed

scenarios/AksOpenAiTerraform/terraform/modules/storage_account/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ resource "azurerm_storage_account" "storage_account" {
22
name = var.name
33
resource_group_name = var.resource_group_name
44

5-
public_network_access_enabled = false
65
location = var.location
76
account_kind = var.account_kind
87
account_tier = var.account_tier
98
account_replication_type = var.replication_type
109
is_hns_enabled = var.is_hns_enabled
1110
tags = var.tags
1211

12+
allow_nested_items_to_be_public = false
13+
1314
network_rules {
1415
default_action = (length(var.ip_rules) + length(var.virtual_network_subnet_ids)) > 0 ? "Deny" : var.default_action
1516
ip_rules = var.ip_rules

0 commit comments

Comments
 (0)