File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
scenarios/azure-docs/articles/virtual-network Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -260,14 +260,14 @@ az config set extension.dynamic_install_allow_preview=true
260260 ` ` ` bash
261261 export RESOURCE_GROUP_NAME=" test-rg$RANDOM_SUFFIX "
262262 export PUBLIC_IP_NAME=" public-ip-bastion$RANDOM_SUFFIX "
263- export LOCATION =" eastus2"
263+ export REGION =" eastus2"
264264 export ALLOCATION_METHOD=" Static"
265265 export SKU=" Standard"
266266
267267 az network public-ip create \
268268 --resource-group $RESOURCE_GROUP_NAME \
269269 --name $PUBLIC_IP_NAME \
270- --location $LOCATION \
270+ --location $REGION \
271271 --allocation-method $ALLOCATION_METHOD \
272272 --sku $SKU
273273 ` ` `
@@ -310,14 +310,14 @@ az config set extension.dynamic_install_allow_preview=true
310310 export BASTION_NAME=" bastion$RANDOM_SUFFIX "
311311 export VNET_NAME=" vnet-1$RANDOM_SUFFIX "
312312 export PUBLIC_IP_NAME=" public-ip-bastion$RANDOM_SUFFIX "
313- export LOCATION =" eastus2"
313+ export REGION =" eastus2"
314314
315315 az network bastion create \
316316 --resource-group $RESOURCE_GROUP_NAME \
317317 --name $BASTION_NAME \
318318 --vnet-name $VNET_NAME \
319319 --public-ip-address $PUBLIC_IP_NAME \
320- --location $LOCATION
320+ --location $REGION
321321 ` ` `
322322
323323 Results:
You can’t perform that action at this time.
0 commit comments