Skip to content

Commit 6c469e1

Browse files
committed
acrolinx
1 parent fb768a0 commit 6c469e1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/virtual-network/tutorial-connect-virtual-networks-cli.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ az network vnet create \
6565

6666
## Peer virtual networks
6767

68-
Peerings are established between virtual network IDs, so you must first get the ID of each virtual network with [az network vnet show](/cli/azure/network/vnet#az-network-vnet-show) and store the ID in a variable.
68+
Peerings are established between virtual network IDs. Obtain the ID of each virtual network with [az network vnet show](/cli/azure/network/vnet#az-network-vnet-show) and store the ID in a variable.
6969

7070
```azurecli-interactive
7171
# Get the id for vnet-1.
@@ -82,7 +82,7 @@ vNet2Id=$(az network vnet show \
8282
--out tsv)
8383
```
8484

85-
Create a peering from **vnet-1** to **vnet-2** with [az network vnet peering create](/cli/azure/network/vnet/peering#az-network-vnet-peering-create). If the `--allow-vnet-access` parameter is not specified, a peering is established, but no communication can flow through it.
85+
Create a peering from **vnet-1** to **vnet-2** with [az network vnet peering create](/cli/azure/network/vnet/peering#az-network-vnet-peering-create). If the `--allow-vnet-access` parameter isn't specified, a peering is established, but no communication can flow through it.
8686

8787
```azurecli-interactive
8888
az network vnet peering create \
@@ -114,15 +114,15 @@ az network vnet peering show \
114114
--query peeringState
115115
```
116116

117-
Resources in one virtual network cannot communicate with resources in the other virtual network until the **peeringState** for the peerings in both virtual networks is **Connected**.
117+
Resources in one virtual network can't communicate with resources in the other virtual network until the **peeringState** for the peerings in both virtual networks is **Connected**.
118118

119119
## Create virtual machines
120120

121121
Create a VM in each virtual network so that you can communicate between them in a later step.
122122

123123
### Create the first VM
124124

125-
Create a VM with [az vm create](/cli/azure/vm#az-vm-create). The following example creates a VM named **vm-1** in the **vnet-1** virtual network. If SSH keys do not already exist in a default key location, the command creates them. To use a specific set of keys, use the `--ssh-key-value` option. The `--no-wait` option creates the VM in the background, so you can continue to the next step.
125+
Create a VM with [az vm create](/cli/azure/vm#az-vm-create). The following example creates a VM named **vm-1** in the **vnet-1** virtual network. If SSH keys don't already exist in a default key location, the command creates them. To use a specific set of keys, use the `--ssh-key-value` option. The `--no-wait` option creates the VM in the background, so you can continue to the next step.
126126

127127
```azurecli-interactive
128128
az vm create \

0 commit comments

Comments
 (0)