Skip to content

Commit 5f9c45f

Browse files
author
Michael Bender
committed
freshness updates - qs ilb cli
1 parent c5fb771 commit 5f9c45f

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

articles/load-balancer/quickstart-load-balancer-standard-internal-cli.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Create a resource group with [az group create](/cli/azure/group#az-group-create)
3232
```azurecli-interactive
3333
az group create \
3434
--name CreateIntLBQS-rg \
35-
--location westus3
35+
--location westus2
3636
```
3737

3838
When you create an internal load balancer, a virtual network is configured as the network for the load balancer.
@@ -46,7 +46,7 @@ Create a virtual network by using [az network vnet create](/cli/azure/network/vn
4646
```azurecli-interactive
4747
az network vnet create \
4848
--resource-group CreateIntLBQS-rg \
49-
--location westus3 \
49+
--location westus2 \
5050
--name myVNet \
5151
--address-prefixes 10.1.0.0/16 \
5252
--subnet-name myBackendSubnet \
@@ -88,12 +88,14 @@ az network vnet subnet create \
8888
Use [az network bastion create](/cli/azure/network/bastion#az-network-bastion-create) to create a host.
8989

9090
```azurecli-interactive
91+
az config set extension.use_dynamic_install=yes_without_prompt
92+
9193
az network bastion create \
9294
--resource-group CreateIntLBQS-rg \
9395
--name myBastionHost \
9496
--public-ip-address myBastionIP \
9597
--vnet-name myVNet \
96-
--location westus3
98+
--location westus2
9799
```
98100

99101
It can take a few minutes for the Azure Bastion host to deploy.
@@ -237,7 +239,7 @@ Create the virtual machines with [az vm create](/cli/azure/vm#az-vm-create).
237239
--resource-group CreateIntLBQS-rg \
238240
--name myVM$n \
239241
--nics myNicVM$n \
240-
--image win2019datacenter \
242+
--image win2022datacenter \
241243
--admin-username azureuser \
242244
--zone $n \
243245
--no-wait

0 commit comments

Comments
 (0)