Skip to content

Commit 415537f

Browse files
foundry-samples-repo-sync[bot]nikhowlettMicrosoftCopilotDchillakurualvinashcraft
authored
Automated sync from private repo (2026-03-30) (#631)
* Connection Migration for Tools (Grounding, AI Search, Fabric) (#103) * initial commit * save derived arm name Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * use display name in connection map Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * connection fixes * always update display ame * update source->target dictionary * update connection map language * use correct token --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * add provision network now and chain dependency in tf for connections (#133) * Updates for Java SDK GA (#135) * Update sync state to 8dc749def5ba --------- Co-authored-by: nikhowlettMicrosoft <97988752+nikhowlettMicrosoft@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Dchillakuru <167816084+Dchillakuru@users.noreply.github.com> Co-authored-by: Alvin Ashcraft <73072+alvinashcraft@users.noreply.github.com> Co-authored-by: foundry-samples-repo-sync[bot] <foundry-samples-repo-sync[bot]@users.noreply.github.com>
1 parent 07ada1d commit 415537f

8 files changed

Lines changed: 1156 additions & 23 deletions

File tree

.github/.sync-sha

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12648bcde39fef0e73e7f53d55691ebeb8763379
1+
8dc749def5ba8aaf43b57bab480fac44cfb95dcc

infrastructure/infrastructure-setup-bicep/18-managed-virtual-network-preview/azuredeploy.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1274,7 +1274,8 @@
12741274
"properties": {
12751275
"managedNetwork": {
12761276
"IsolationMode": "[parameters('isolationMode')]",
1277-
"managedNetworkKind": "V2"
1277+
"managedNetworkKind": "V2",
1278+
"provisionNetworkNow": true
12781279
}
12791280
}
12801281
},

infrastructure/infrastructure-setup-bicep/18-managed-virtual-network-preview/modules-network-secured/managed-network.bicep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ resource managedNetwork 'Microsoft.CognitiveServices/accounts/managednetworks@20
4949
managedNetwork: {
5050
IsolationMode: isolationMode
5151
managedNetworkKind: 'V2'
52+
provisionNetworkNow: true
5253
//firewallSku: 'Standard' // Uncomment to enable firewall only when in AllowOnlyApprovedOutbound mode
5354
}
5455
}

infrastructure/infrastructure-setup-terraform/18-managed-virtual-network-preview/ai-foundry.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ resource "azapi_resource" "managed_network" {
148148
managedNetwork = {
149149
isolationMode = "AllowInternetOutbound"
150150
managedNetworkKind = "V2"
151+
provisionNetworkNow = true
151152
}
152153
}
153154
}
@@ -380,6 +381,10 @@ resource "azapi_resource" "conn_cosmosdb" {
380381
}
381382
}
382383
}
384+
385+
depends_on = [
386+
azapi_resource.conn_aisearch
387+
]
383388
}
384389

385390
# Connection: Storage Account
@@ -403,6 +408,10 @@ resource "azapi_resource" "conn_storage" {
403408
}
404409
}
405410
}
411+
412+
depends_on = [
413+
azapi_resource.conn_cosmosdb
414+
]
406415
}
407416

408417
# Local variable to format project workspace ID as GUID

0 commit comments

Comments
 (0)