Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/.sync-sha
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12648bcde39fef0e73e7f53d55691ebeb8763379
8dc749def5ba8aaf43b57bab480fac44cfb95dcc
Original file line number Diff line number Diff line change
Expand Up @@ -1274,7 +1274,8 @@
"properties": {
"managedNetwork": {
"IsolationMode": "[parameters('isolationMode')]",
"managedNetworkKind": "V2"
"managedNetworkKind": "V2",
"provisionNetworkNow": true
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ resource managedNetwork 'Microsoft.CognitiveServices/accounts/managednetworks@20
managedNetwork: {
IsolationMode: isolationMode
managedNetworkKind: 'V2'
provisionNetworkNow: true
//firewallSku: 'Standard' // Uncomment to enable firewall only when in AllowOnlyApprovedOutbound mode
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ resource "azapi_resource" "managed_network" {
managedNetwork = {
isolationMode = "AllowInternetOutbound"
managedNetworkKind = "V2"
provisionNetworkNow = true
}
}
}
Expand Down Expand Up @@ -380,6 +381,10 @@ resource "azapi_resource" "conn_cosmosdb" {
}
}
}

depends_on = [
azapi_resource.conn_aisearch
]
}

# Connection: Storage Account
Expand All @@ -403,6 +408,10 @@ resource "azapi_resource" "conn_storage" {
}
}
}

depends_on = [
azapi_resource.conn_cosmosdb
]
}

# Local variable to format project workspace ID as GUID
Expand Down
Loading
Loading