Skip to content

Commit 2e63ecb

Browse files
authored
Update broken template urls
1 parent 7372bd5 commit 2e63ecb

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

articles/machine-learning/how-to-create-workspace-template.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Once your resource group is successfully created, deploy the template with the f
105105
az deployment group create \
106106
--name "exampledeployment" \
107107
--resource-group "examplegroup" \
108-
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" \
108+
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" \
109109
--parameters workspaceName="exampleworkspace" location="eastus"
110110
```
111111

@@ -115,7 +115,7 @@ az deployment group create \
115115
New-AzResourceGroupDeployment `
116116
-Name "exampledeployment" `
117117
-ResourceGroupName "examplegroup" `
118-
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" `
118+
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" `
119119
-workspaceName "exampleworkspace" `
120120
-location "eastus"
121121
```
@@ -133,7 +133,7 @@ By default, all of the resources created as part of the template are new. Howeve
133133
az deployment group create \
134134
--name "exampledeployment" \
135135
--resource-group "examplegroup" \
136-
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" \
136+
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" \
137137
--parameters workspaceName="exampleworkspace" \
138138
location="eastus" \
139139
storageAccountOption="existing" \
@@ -146,7 +146,7 @@ az deployment group create \
146146
New-AzResourceGroupDeployment `
147147
-Name "exampledeployment" `
148148
-ResourceGroupName "examplegroup" `
149-
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" `
149+
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" `
150150
-workspaceName "exampleworkspace" `
151151
-location "eastus" `
152152
-storageAccountOption "existing" `
@@ -227,7 +227,7 @@ To enable use of Customer Managed Keys, set the following parameters when deploy
227227
az deployment group create \
228228
--name "exampledeployment" \
229229
--resource-group "examplegroup" \
230-
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" \
230+
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" \
231231
--parameters workspaceName="exampleworkspace" \
232232
location="eastus" \
233233
encryption_status="Enabled" \
@@ -241,7 +241,7 @@ az deployment group create \
241241
New-AzResourceGroupDeployment `
242242
-Name "exampledeployment" `
243243
-ResourceGroupName "examplegroup" `
244-
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" `
244+
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" `
245245
-workspaceName "exampleworkspace" `
246246
-location "eastus" `
247247
-encryption_status "Enabled" `
@@ -284,7 +284,7 @@ If your associated resources are not behind a virtual network, you can set the *
284284
az deployment group create \
285285
--name "exampledeployment" \
286286
--resource-group "examplegroup" \
287-
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" \
287+
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" \
288288
--parameters workspaceName="exampleworkspace" \
289289
location="eastus" \
290290
privateEndpointType="AutoApproval"
@@ -296,7 +296,7 @@ az deployment group create \
296296
New-AzResourceGroupDeployment `
297297
-Name "exampledeployment" `
298298
-ResourceGroupName "examplegroup" `
299-
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" `
299+
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" `
300300
-workspaceName "exampleworkspace" `
301301
-location "eastus" `
302302
-privateEndpointType "AutoApproval"
@@ -314,7 +314,7 @@ To deploy a resource behind a new virtual network, set the **vnetOption** to **n
314314
az deployment group create \
315315
--name "exampledeployment" \
316316
--resource-group "examplegroup" \
317-
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" \
317+
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" \
318318
--parameters workspaceName="exampleworkspace" \
319319
location="eastus" \
320320
vnetOption="new" \
@@ -329,7 +329,7 @@ az deployment group create \
329329
New-AzResourceGroupDeployment `
330330
-Name "exampledeployment" `
331331
-ResourceGroupName "examplegroup" `
332-
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" `
332+
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" `
333333
-workspaceName "exampleworkspace" `
334334
-location "eastus" `
335335
-vnetOption "new" `
@@ -348,7 +348,7 @@ Alternatively, you can deploy multiple or all dependent resources behind a virtu
348348
az deployment group create \
349349
--name "exampledeployment" \
350350
--resource-group "examplegroup" \
351-
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" \
351+
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" \
352352
--parameters workspaceName="exampleworkspace" \
353353
location="eastus" \
354354
vnetOption="new" \
@@ -367,7 +367,7 @@ az deployment group create \
367367
New-AzResourceGroupDeployment `
368368
-Name "exampledeployment" `
369369
-ResourceGroupName "examplegroup" `
370-
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" `
370+
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" `
371371
-workspaceName "exampleworkspace" `
372372
-location "eastus" `
373373
-vnetOption "new" `
@@ -393,7 +393,7 @@ New-AzResourceGroupDeployment `
393393
az deployment group create \
394394
--name "exampledeployment" \
395395
--resource-group "examplegroup" \
396-
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" \
396+
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" \
397397
--parameters workspaceName="exampleworkspace" \
398398
location="eastus" \
399399
vnetOption="new" \
@@ -407,7 +407,7 @@ az deployment group create \
407407
New-AzResourceGroupDeployment `
408408
-Name "exampledeployment" `
409409
-ResourceGroupName "examplegroup" `
410-
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" `
410+
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" `
411411
-workspaceName "exampleworkspace" `
412412
-location "eastus" `
413413
-vnetOption "new" `
@@ -455,7 +455,7 @@ To deploy a workspace with existing associated resources you have to set the **v
455455
az deployment group create \
456456
--name "exampledeployment" \
457457
--resource-group "examplegroup" \
458-
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" \
458+
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" \
459459
--parameters workspaceName="exampleworkspace" \
460460
location="eastus" \
461461
vnetOption="existing" \
@@ -476,7 +476,7 @@ To deploy a workspace with existing associated resources you have to set the **v
476476
New-AzResourceGroupDeployment `
477477
-Name "exampledeployment" `
478478
-ResourceGroupName "examplegroup" `
479-
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" `
479+
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" `
480480
-workspaceName "exampleworkspace" `
481481
-location "eastus" `
482482
-vnetOption "existing" `
@@ -504,7 +504,7 @@ To deploy a workspace with existing associated resources you have to set the **v
504504
az deployment group create \
505505
--name "exampledeployment" \
506506
--resource-group "examplegroup" \
507-
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" \
507+
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" \
508508
--parameters workspaceName="exampleworkspace" \
509509
location="eastus" \
510510
vnetOption="existing" \
@@ -521,7 +521,7 @@ az deployment group create \
521521
New-AzResourceGroupDeployment `
522522
-Name "exampledeployment" `
523523
-ResourceGroupName "examplegroup" `
524-
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-advanced/azuredeploy.json" `
524+
-TemplateUri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.machinelearningservices/machine-learning-workspace-vnet/azuredeploy.json" `
525525
-workspaceName "exampleworkspace" `
526526
-location "eastus" `
527527
-vnetOption "existing" `
@@ -653,4 +653,4 @@ To avoid this problem, we recommend one of the following approaches:
653653
654654
* [Deploy resources with Resource Manager templates and Resource Manager REST API](../azure-resource-manager/templates/deploy-rest.md).
655655
* [Creating and deploying Azure resource groups through Visual Studio](../azure-resource-manager/templates/create-visual-studio-deployment-project.md).
656-
* [For other templates related to Azure Machine Learning, see the Azure Quickstart Templates repository](https://github.com/Azure/azure-quickstart-templates)
656+
* [For other templates related to Azure Machine Learning, see the Azure Quickstart Templates repository](https://github.com/Azure/azure-quickstart-templates)

0 commit comments

Comments
 (0)