You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-secure-online-endpoint.md
+18-5Lines changed: 18 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ ms.topic: how-to
9
9
ms.reviewer: mopeakande
10
10
author: dem108
11
11
ms.author: sehan
12
-
ms.date: 10/04/2022
12
+
ms.date: 12/08/2022
13
13
ms.custom: event-tier1-build-2022
14
14
---
15
15
@@ -207,19 +207,32 @@ The following diagram shows the overall architecture of this example:
207
207
208
208
:::image type="content" source="./media/how-to-secure-online-endpoint/endpoint-network-isolation-diagram.png" alt-text="Diagram of the services created.":::
209
209
210
-
To create the resources, use the following Azure CLI commands. Replace `<UNIQUE_SUFFIX>` with a unique suffix for the resources that are created.
210
+
To create the resources, use the following Azure CLI commands. To create a resource group. Replace `<my-resource-group>` and `<my-location>` with the desierd values.
211
+
212
+
```azurecli
213
+
# create resource group
214
+
az group create --name <my-resource-group> --location <my-location>
215
+
```
216
+
217
+
Clone the example files for the deployment, use the following command:
To create the resources, use the following Azure CLI commands. Replace `<UNIQUE_SUFFIX>` with a unique suffix for the resources that are created.
215
225
226
+
```azurecli
227
+
az deployment group create --template-file endpoints/online/managed/vnet/setup_ws/main.bicep --parameters suffix=$SUFFIX --resource-group <my-resource-group>
228
+
```
216
229
### Create the virtual machine jump box
217
230
218
231
To create an Azure Virtual Machine that can be used to connect to the VNet, use the following command. Replace `<your-new-password>` with the password you want to use when connecting to this VM:
219
232
220
233
```azurecli
221
234
# create vm
222
-
az vm create --name test-vm --vnet-name vnet-$SUFFIX --subnet snet-scoring --image UbuntuLTS --admin-username azureuser --admin-password <your-new-password>
235
+
az vm create --name test-vm --vnet-name vnet-$SUFFIX --subnet snet-scoring --image UbuntuLTS --admin-username azureuser --admin-password <your-new-password> --resource-group <my-resource-group>
0 commit comments