Skip to content

Commit 31317e3

Browse files
Merge pull request #293854 from mbender-ms/nsp-fix-links
fix dates 2
2 parents 0b46f22 + 8cb0604 commit 31317e3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/private-link/create-network-security-perimeter-cli.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ To get started, connect to [Azure Cloud Shell](https://shell.azure.com) or use y
5656
5757
## Create a resource group and key vault
5858
59-
Before you can create a network security perimeter, you have to create a resource group and a key vault resource.
59+
Before you can create a network security perimeter, you have to create a resource group and a key vault resource with [az group create](/cli/azure/group) and [az keyvault create](/cli/azure/keyvault).
6060
This example creates a resource group named **resource-group** in the WestCentralUS location and a key vault named **key-vault-YYYYDDMM** in the resource group with the following commands:
6161
6262
```azurecli-interactive
@@ -77,10 +77,10 @@ az keyvault create \
7777

7878
## Create a network security perimeter
7979

80-
In this step, create a network security perimeter with the `az network perimeter create` command.
80+
In this step, create a network security perimeter with the [az network perimeter create](/cli/azure/network/perimeter#az-network-perimeter-create) command.
8181

8282
> [!NOTE]
83-
> Please do not put any personal identifiable or sensitive data in the network security perimeter rules or other network security perimeter configuration.
83+
> Please don't put any personal identifiable or sensitive data in the network security perimeter rules or other network security perimeter configuration.
8484
8585
```azurecli-interactive
8686
az network perimeter create\
@@ -91,7 +91,7 @@ az network perimeter create\
9191

9292
## Create and update PaaS resources’ association with a new profile
9393

94-
In this step, you create a new profile and associate the PaaS resource, the Azure Key Vault with the profile using the `az network perimeter profile create` and `az network perimeter association create` commands.
94+
In this step, you create a new profile and associate the PaaS resource, the Azure Key Vault with the profile using the [az network perimeter profile create](/cli/azure/network/perimeter#az-network-perimeter-profile) and [az network perimeter association create](/cli/azure/network/perimeter#az-network-perimeter-association) commands.
9595

9696
> [!NOTE]
9797
> For the `--private-link-resource` and `--profile` parameter values, replace `<PaaSArmId>` and `<networkSecurityPerimeterProfileId>` with the values for the key vault and the profile ID, respectively.
@@ -134,7 +134,7 @@ In this step, you create a new profile and associate the PaaS resource, the Azur
134134
135135
```
136136
137-
1. Update association by changing the access mode to **enforced** with the `az network perimeter association create` command as follows:
137+
1. Update association by changing the access mode to **enforced** with the [az network perimeter association create](/cli/azure/network/perimeter#az-network-perimeter-association-create) command as follows:
138138
139139
```azurecli-interactive
140140
az network perimeter association create \
@@ -148,7 +148,7 @@ In this step, you create a new profile and associate the PaaS resource, the Azur
148148
149149
## Manage network security perimeter access rules
150150
151-
In this step, you create, update, and delete a network security perimeter access rules with public IP address prefixes using the `az network perimeter profile access-rule` command.
151+
In this step, you create, update, and delete a network security perimeter access rules with public IP address prefixes using the [az network perimeter profile access-rule create](/cli/azure/network/perimeter#az-network-perimeter-profile-access-rule-create) command.
152152
153153
1. Create an inbound access rule with a public IP address prefix for the profile created with the following command:
154154
@@ -178,7 +178,7 @@ In this step, you create, update, and delete a network security perimeter access
178178
179179
```
180180
181-
1. If you need to delete an access rule, use the following command:
181+
1. If you need to delete an access rule, use the [az network perimeter profile access-rule delete](/cli/azure/network/perimeter#az-network-perimeter-profile-access-rule-delete) command:
182182
183183
```azurepowershell-interactive
184184
# Delete the access rule
@@ -192,7 +192,7 @@ In this step, you create, update, and delete a network security perimeter access
192192
193193
## Delete all resources
194194
195-
To delete a network security perimeter and other resources in this quickstart, use the following commands:
195+
To delete a network security perimeter and other resources in this quickstart, use the following [az network perimeter](/cli/azure/network/perimeter) commands:
196196
197197
```azurecli-interactive
198198

0 commit comments

Comments
 (0)