Skip to content

Commit 0180fb5

Browse files
Apply suggestions from code review
Co-authored-by: Celeste de Guzman <[email protected]>
1 parent 3b659b4 commit 0180fb5

7 files changed

+14
-14
lines changed

articles/virtual-network/ip-services/associate-public-ip-address-vm.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Install [Azure PowerShell](/powershell/azure/install-azure-powershell) on your m
161161
The output includes one or more lines that are similar to the example that follows. In the example output, *myVMNic* is the name of the network interface.
162162
163163
```output
164-
"id": "/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/myVMNic",
164+
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/myVMNic",
165165
```
166166
167167
1. To retrieve the names of the virtual networks or subnets that a network interface is in, use the [Get-AzNetworkInterface](/powershell/module/az.network/get-aznetworkinterface) command. For example, the following command gets the virtual network and subnet information for a network interface named *myVMNic* in a resource group named *myResourceGroup*:
@@ -175,7 +175,7 @@ Install [Azure PowerShell](/powershell/azure/install-azure-powershell) on your m
175175
The output includes one or more lines that are similar to the example that follows. In the example output, *myVNet* is the name of the virtual network and *mySubnet* is the name of the subnet.
176176
177177
```output
178-
"/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVNet/subnets/mySubnet",
178+
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVNet/subnets/mySubnet",
179179
```
180180
181181
1. To retrieve the names of the IP configurations for a network interface, use the [Get-AzNetworkInterface](/powershell/module/Az.Network/Get-AzNetworkInterface) command. For example, the following command lists the names of the IP configurations for a network interface named *myVMNic* in a resource group named *myResourceGroup*:
@@ -188,7 +188,7 @@ Install [Azure PowerShell](/powershell/azure/install-azure-powershell) on your m
188188
The output includes one or more lines that are similar to the example that follows. In the example output, *ipconfig1* is the name of an IP configuration.
189189
190190
```output
191-
Id : /subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/myVMNic/ipConfigurations/ipconfig1
191+
Id : /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/myVMNic/ipConfigurations/ipconfig1
192192
```
193193
194194
1. View the public IP address assigned to the IP configuration with the [Get-AzPublicIpAddress](/powershell/module/az.network/get-azpublicipaddress) command. The following example retrieves the addresses assigned to a public IP address named *myPublicIP* in a resource group named *myResourceGroup*.
@@ -209,7 +209,7 @@ Install [Azure PowerShell](/powershell/azure/install-azure-powershell) on your m
209209
The output includes one or more lines that are similar to the example that follows. In the example output, *myPublicIP* is the name of the public IP address assigned to the IP configuration.
210210

211211
```output
212-
"/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/myResourceGroup/providers/Microsoft.Network/publicIPAddresses/myPublicIP"
212+
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/publicIPAddresses/myPublicIP"
213213
```
214214

215215
> [!NOTE]

articles/virtual-network/ip-services/remove-public-ip-address-vm.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ az network nic ip-config update \
6363
The output includes one or more lines that are similar to the following example:
6464
6565
```
66-
"id": "/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/myVMNic",
66+
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/myVMNic",
6767
```
6868
6969
In the previous example, *myVMVic* is the name of the network interface.
@@ -92,7 +92,7 @@ az network nic ip-config update \
9292
The output includes one or more lines that are similar to the following example:
9393
9494
```
95-
"id": "/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/myResourceGroup/providers/Microsoft.Network/publicIPAddresses/myVMPublicIP",
95+
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/publicIPAddresses/myVMPublicIP",
9696
```
9797
9898
In the previous example, *myVMPublicIP* is the name of the public IP address.
@@ -123,7 +123,7 @@ Set-AzNetworkInterface -NetworkInterface $nic
123123
The output includes one or more lines that are similar to the following example:
124124
125125
```
126-
"id": "/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/myVMNic",
126+
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/myVMNic",
127127
```
128128
129129
In the previous example, *myVMNic* is the name of the network interface.
@@ -138,7 +138,7 @@ Set-AzNetworkInterface -NetworkInterface $nic
138138
The output includes one or more lines that are similar to the following example:
139139
140140
```
141-
"id": "/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/myVMNic/ipConfigurations/ipconfigmyVM"
141+
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/myVMNic/ipConfigurations/ipconfigmyVM"
142142
```
143143
144144
In the previous example, *ipconfigmyVM* is the name of the IP configuration.
@@ -153,7 +153,7 @@ Set-AzNetworkInterface -NetworkInterface $nic
153153
The output includes one or more lines that are similar to the following example:
154154
155155
```
156-
"id": "/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/myResourceGroup/providers/Microsoft.Network/publicIPAddresses/myPublicIP"
156+
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/publicIPAddresses/myPublicIP"
157157
```
158158
159159
In the previous example, *myVMPublicIP* is the name of the public IP address.

articles/virtual-network/quick-create-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The VMs take a few minutes to create. After Azure creates each VM, the Azure CLI
122122
```output
123123
{
124124
"fqdns": "",
125-
"id": "/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/test-rg/providers/Microsoft.Compute/virtualMachines/vm-2",
125+
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Compute/virtualMachines/vm-2",
126126
"location": "eastus2",
127127
"macAddress": "00-0D-3A-23-9A-49",
128128
"powerState": "VM running",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ The VM takes a few minutes to create. After the VM is created, the Azure CLI sho
154154
```output
155155
{
156156
"fqdns": "",
157-
"id": "/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/test-rg/providers/Microsoft.Compute/virtualMachines/vm-2",
157+
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Compute/virtualMachines/vm-2",
158158
"location": "eastus",
159159
"macAddress": "00-0D-3A-23-9A-49",
160160
"powerState": "VM running",

articles/virtual-network/tutorial-create-route-table-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ The VM takes a few minutes to create. After the VM is created, the Azure CLI sho
185185
```output
186186
{
187187
"fqdns": "",
188-
"id": "/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/test-rg/providers/Microsoft.Compute/virtualMachines/vm-private",
188+
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Compute/virtualMachines/vm-private",
189189
"location": "westus2",
190190
"macAddress": "00-0D-3A-23-9A-49",
191191
"powerState": "VM running",

articles/virtual-network/tutorial-filter-network-traffic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ The VM takes a few minutes to create. After the VM is created, output similar to
684684
```output
685685
{
686686
"fqdns": "",
687-
"id": "/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/test-rg/providers/Microsoft.Compute/virtualMachines/vm-web",
687+
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Compute/virtualMachines/vm-web",
688688
"location": "westus2",
689689
"macAddress": "00-0D-3A-23-9A-49",
690690
"powerState": "VM running",

articles/virtual-network/tutorial-restrict-network-access-to-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ The VM takes a few minutes to create. After the VM is created, the Azure CLI sho
799799
```output
800800
{
801801
"fqdns": "",
802-
"id": "/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/test-rg/providers/Microsoft.Compute/virtualMachines/vm-public",
802+
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Compute/virtualMachines/vm-public",
803803
"location": "westus2",
804804
"macAddress": "00-0D-3A-23-9A-49",
805805
"powerState": "VM running",

0 commit comments

Comments
 (0)