We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b9d715 commit 995ec7aCopy full SHA for 995ec7a
scenarios/AksOpenAiTerraform/terraform/modules/storage_account/main.tf
@@ -2,14 +2,15 @@ resource "azurerm_storage_account" "storage_account" {
2
name = var.name
3
resource_group_name = var.resource_group_name
4
5
- public_network_access_enabled = false
6
location = var.location
7
account_kind = var.account_kind
8
account_tier = var.account_tier
9
account_replication_type = var.replication_type
10
is_hns_enabled = var.is_hns_enabled
11
tags = var.tags
12
+ allow_nested_items_to_be_public = false
13
+
14
network_rules {
15
default_action = (length(var.ip_rules) + length(var.virtual_network_subnet_ids)) > 0 ? "Deny" : var.default_action
16
ip_rules = var.ip_rules
0 commit comments