Skip to content

Commit b7af12c

Browse files
authored
Merge pull request #107133 from christiankuhtz/patch-298
cli tweak
2 parents d00c958 + c2b454f commit b7af12c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/virtual-network/quickstart-create-nat-gateway-template.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ Nine Azure resources are defined in the template:
7373
**Azure CLI**
7474

7575
```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"
7979
8080
az group create \
8181
--name $resourceGroupName \
@@ -89,7 +89,7 @@ az group deployment create \
8989
**Azure PowerShell**
9090

9191
```azurepowershell-interactive
92-
$location = Read-Host -Prompt "Enter the location (i.e. centralus)"
92+
$location = Read-Host -Prompt "Enter the location (i.e. westcentralus)"
9393
$templateUri = "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-nat-gateway-1-vm/azuredeploy.json"
9494
9595
$resourceGroupName = "myResourceGroupNAT"

0 commit comments

Comments
 (0)