Skip to content

Commit 098db49

Browse files
committed
updating tab.
1 parent f6b4343 commit 098db49

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

articles/private-link/plsnat-how-to-draft.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The type of NVA you're using determines how to disable SNAT for private endpoint
3737

3838
Here we add the tag to the VM NIC.
3939

40-
# [**Portal**](#tab/vm-nic-portal)
40+
# [Portal](#tab/vm-nic-portal)
4141

4242
1. Sign in to the [Azure portal](https://portal.azure.com).
4343
1. In the search bar at the top, type "Virtual machines" and select it from the services.
@@ -57,7 +57,7 @@ Here we add the tag to the VM NIC.
5757
> [!NOTE]
5858
> The tag is case-sensitive. Ensure you enter it exactly as shown.
5959
60-
# [**PowerShell**](#tab/vm-nic-powershell)
60+
# [PowerShell](#tab/vm-nic-powershell)
6161

6262
1. Use the following PowerShell command to add the tag to your VM NIC:
6363

@@ -69,19 +69,20 @@ Here we add the tag to the VM NIC.
6969
Set-AzResource -ResourceId $nic.Id -Tag $tags -Force
7070
```
7171

72-
# [**Azure CLI**](#tab/vm-nic-cli)
72+
# [Azure CLI](#tab/vm-nic-cli)
7373

7474
1. Use the following CLI command to add the tag to your VM NIC:
7575

7676
```azurecli-interactive
7777
az network nic update --name "myNIC" --resource-group "MyResourceGroup" --set tags.disableSnatOnPL=string:"true"
7878
```
79+
---
7980

80-
#### Add Tag to your VMSS
81+
### Add Tag to your VMSS
8182

8283
Here we add the tag to the VMSS instance.
8384

84-
# [**Portal**](#tab/vmss-powershell)
85+
# [Portal](#tab/vmss-portal)
8586

8687
1. Sign in to the [Azure portal](https://portal.azure.com).
8788
1. In the search bar at the top, type "Virtual machine scale sets" and select it from the services.
@@ -99,7 +100,7 @@ Here we add the tag to the VMSS instance.
99100
> [!NOTE]
100101
> The tag is case-sensitive. Ensure you enter it exactly as shown.
101102
102-
# [**PowerShell**](#tab/vmss-cli)
103+
# [PowerShell](#tab/vmss-powershell)
103104

104105
1. Use the following PowerShell command to add the tag to your VMSS:
105106

@@ -109,13 +110,14 @@ Here we add the tag to the VMSS instance.
109110
Update-AzVmss -ResourceGroupName "MyResourceGroup" -Name "myVmss" -VirtualMachineScaleSet $vmss
110111
```
111112

112-
# [**Azure CLI**](#tab/vmss-powershell)
113+
# [Azure CLI](#tab/vmss-cl)
113114

114115
1. Use the following Azure CLI command to add the tag to your VMSS:
115116

116117
```azurecli-interactive
117118
az vmss update --name "myVmss" --resource-group "MyResourceGroup" --set tags.disableSnatOnPL=true
118119
```
120+
---
119121

120122
#### Validate the Tag
121123

0 commit comments

Comments
 (0)