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 21ca3f6 commit 7e072c4Copy full SHA for 7e072c4
scenarios/AksOpenAiTerraform/terraform/modules/openai/main.tf
@@ -31,8 +31,8 @@ resource "azurerm_cognitive_deployment" "deployment" {
31
version = each.value.model.version
32
}
33
34
- scale {
35
- type = "Standard"
+ sku {
+ name = "Standard"
36
37
38
scenarios/AksOpenAiTerraform/terraform/modules/storage_account/main.tf
@@ -9,6 +9,8 @@ resource "azurerm_storage_account" "storage_account" {
9
is_hns_enabled = var.is_hns_enabled
10
tags = var.tags
11
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