File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Create a resource group with [az group create](/cli/azure/group#az-group-create)
32
32
``` azurecli-interactive
33
33
az group create \
34
34
--name CreateIntLBQS-rg \
35
- --location westus3
35
+ --location westus2
36
36
```
37
37
38
38
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
46
46
``` azurecli-interactive
47
47
az network vnet create \
48
48
--resource-group CreateIntLBQS-rg \
49
- --location westus3 \
49
+ --location westus2 \
50
50
--name myVNet \
51
51
--address-prefixes 10.1.0.0/16 \
52
52
--subnet-name myBackendSubnet \
@@ -88,12 +88,14 @@ az network vnet subnet create \
88
88
Use [ az network bastion create] ( /cli/azure/network/bastion#az-network-bastion-create ) to create a host.
89
89
90
90
``` azurecli-interactive
91
+ az config set extension.use_dynamic_install=yes_without_prompt
92
+
91
93
az network bastion create \
92
94
--resource-group CreateIntLBQS-rg \
93
95
--name myBastionHost \
94
96
--public-ip-address myBastionIP \
95
97
--vnet-name myVNet \
96
- --location westus3
98
+ --location westus2
97
99
```
98
100
99
101
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).
237
239
--resource-group CreateIntLBQS-rg \
238
240
--name myVM$n \
239
241
--nics myNicVM$n \
240
- --image win2019datacenter \
242
+ --image win2022datacenter \
241
243
--admin-username azureuser \
242
244
--zone $n \
243
245
--no-wait
You can’t perform that action at this time.
0 commit comments