File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -73,9 +73,9 @@ Nine Azure resources are defined in the template:
73
73
** Azure CLI**
74
74
75
75
``` azurecli-interactive
76
- resourceGroupName="myResourceGroupNAT" &&
77
- templateUri="https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-nat-gateway-1-vm/azuredeploy.json" &&
78
- location="eastus2"
76
+ read -p "Enter the location (i.e. westcentralus): " location
77
+ resourceGroupName="myResourceGroupNAT"
78
+ templateUri="https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-nat-gateway-1-vm/azuredeploy.json"
79
79
80
80
az group create \
81
81
--name $resourceGroupName \
@@ -89,7 +89,7 @@ az group deployment create \
89
89
** Azure PowerShell**
90
90
91
91
``` azurepowershell-interactive
92
- $location = Read-Host -Prompt "Enter the location (i.e. centralus )"
92
+ $location = Read-Host -Prompt "Enter the location (i.e. westcentralus )"
93
93
$templateUri = "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-nat-gateway-1-vm/azuredeploy.json"
94
94
95
95
$resourceGroupName = "myResourceGroupNAT"
You can’t perform that action at this time.
0 commit comments