Skip to content

Commit 1ebea70

Browse files
Merge pull request #424 from AhmadAbdullah91/patch-11
Update virtual-networks.md
2 parents 37d1ffa + e838949 commit 1ebea70

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

articles/ai-services/agents/how-to/virtual-networks.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,36 @@ For customers without an existing virtual network, the Standard Setup with Priva
105105
```console
106106
az deployment group create --resource-group {my_resource_group} --template-file main-create.bicep
107107
```
108+
109+
1. Run the CheckCapabilityHostReadiness.ps1 and edit the command to add your subscription ID, resource group name, and your newly deployed AI Services account resource name.
110+
111+
```
112+
.\CheckCapabilityHostReadiness.ps1 -subscriptionId "<your-sub-id>" -resourcegroup "<new-rg-name>" -accountname "<your-aiservices-name>"
113+
```
114+
115+
If you don't want to run the PowerShell script, you can run a bash script instead, from the file CheckCapabilityHostReadiness.sh. Run the following two commands:
116+
117+
```
118+
chmod +x CheckCapabilityHostReadiness.sh
119+
./CheckCapabilityHostReadiness.sh "<your-sub-id>" "<new-rg-name>" "<your-aiservices-name>"
120+
```
121+
122+
1. Deploy the main-project-caphost-create.bicep
123+
124+
```
125+
az deployment group create --resource-group <new-rg-name> --template-file main-project-caphost-create.bicep
126+
```
127+
128+
After running this script, you're required to input the following values:
129+
130+
```
131+
Please provide string value for 'accountName' (? for help): <your-account-name>
132+
Please provide string value for 'projectName' (? for help): <your-project-name>
133+
Please provide string value for 'aiSearchName' (? for help): <your-search-name>
134+
Please provide string value for 'azureStorageName' (? for help): <your-storage-name>
135+
Please provide string value for 'cosmosDBName' (? for help): <your-cosmosdb-name>
136+
```
137+
108138
For more details, see the [README](https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/infrastructure-setup/15-private-network-standard-agent-setup).
109139
110140
## Deep Dive Standard Setup with Private Networking Template

0 commit comments

Comments
 (0)