Skip to content

Commit 1d7117a

Browse files
committed
update
1 parent b1aba8b commit 1d7117a

File tree

2 files changed

+40
-40
lines changed

2 files changed

+40
-40
lines changed

articles/payment-hsm/create-different-vnet.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.date: 05/25/2023
1414

1515
[!INCLUDE [Payment HSM intro](./includes/about-payment-hsm.md)]
1616

17-
This tutorial describes how to create a payment HSM with the host and management port in different virtual networks, using Azure CLI or Azure PowerSHell. You can instead:
17+
This tutorial describes how to create a payment HSM with the host and management port in different virtual networks, using Azure CLI or Azure PowerShell. You can instead:
1818
- [Create a payment HSM with the host and management port in the same virtual network using Azure CLI or PowerShell](create-payment-hsm.md)
1919
- [Create a payment HSM with the host and management port in the same virtual network using an ARM template](quickstart-template.md)
2020
- [Create a payment HSM with the host and management port in different virtual networks using an ARM template](create-different-vnet-arm.md)
@@ -28,7 +28,7 @@ This tutorial describes how to create a payment HSM with the host and management
2828

2929
- You must register the "Microsoft.HardwareSecurityModules" and "Microsoft.Network" resource providers, as well as the Azure Payment HSM features. Steps for doing so are at [Register the Azure Payment HSM resource provider and resource provider features](register-payment-hsm-resource-providers.md).
3030

31-
To quickly ascertain if the resource providers and features are already registered, use the Azure CLI [az provider show](/cli/azure/provider#az-provider-show) command. (You will find the output of this command more readable if you display it in table-format.)
31+
To quickly ascertain if the resource providers and features are already registered, use the Azure CLI [az provider show](/cli/azure/provider#az-provider-show) command. (The output of this command is more readable when displayed in table-format.)
3232

3333
```azurecli-interactive
3434
az provider show --namespace "Microsoft.HardwareSecurityModules" -o table
@@ -83,7 +83,7 @@ To verify that the VNet and subnet were created correctly, use the Azure CLI [az
8383
az network vnet subnet show -g "myResourceGroup" --vnet-name "myVNet" -n myPHSMSubnet
8484
```
8585

86-
Make note of the host's subnet ID, as you will need it when creating the payment HSM. The ID of the subnet will end with the name of the subnet:
86+
Make note of the host's subnet ID, which is used when creating the payment HSM. The ID of the subnet ends with the name of the subnet:
8787

8888
```json
8989
"id": "/subscriptions/<subscriptionID>/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVNet/subnets/myPHSMSubnet",
@@ -107,7 +107,7 @@ To verify that the management VNet and subnet were created correctly, use the Az
107107
az network vnet subnet show -g "myResourceGroup" --vnet-name "myManagementVNet" -n "myManagementSubnet"
108108
```
109109

110-
You will also need the management's subnet ID when creating the payment HSM.
110+
You also need the management's subnet ID when creating the payment HSM.
111111

112112
# [Azure PowerShell](#tab/azure-powershell)
113113

@@ -146,13 +146,13 @@ To verify that the VNet was created correctly, use the Azure PowerShell [Get-AzV
146146
Get-AzVirtualNetwork -Name "myVNet" -ResourceGroupName "myResourceGroup"
147147
```
148148

149-
Make note of the subnet's ID, as you will need it for the next step. The ID of the subnet will end with the name of the subnet:
149+
Make note of the subnet's ID, which is used in the next step. The ID of the subnet ends with the name of the subnet:
150150

151151
```json
152152
"Id": "/subscriptions/<subscriptionID>/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVNet/subnets/myPHSMSubnet",
153153
```
154154

155-
Now create another virtual network and subnet for the management port. First, set new varibles:
155+
Now create another virtual network and subnet for the management port. First, set new variables:
156156

157157
```azurepowershell-interactive
158158
$ManagementVNetAddressPrefix = @("10.1.0.0/16")
@@ -172,7 +172,7 @@ To verify that the VNet was created correctly, use the Azure PowerShell [Get-AzV
172172
Get-AzVirtualNetwork -Name "myManagementVNet" -ResourceGroupName "myResourceGroup"
173173
```
174174

175-
You will also need the management's subnet ID when creating the payment HSM.
175+
You also need the management's subnet ID when creating the payment HSM.
176176

177177
---
178178

@@ -202,7 +202,7 @@ To see the newly created network interfaces, use the [az network nic list](/cli/
202202
az network nic list -g myResourceGroup -o table
203203
```
204204

205-
In the output, you will see host 1 and host 2 listed, as well as a management interface:
205+
In the output, host 1 and host 2 are listed, as well as a management interface:
206206

207207
```bash
208208
... Name NicType Primary ProvisioningState ResourceGroup ...
@@ -218,7 +218,7 @@ To see the newly created network interfaces, use the [az network nic show](/cli/
218218
az network nic show -g myresourcegroup -n myPaymentHSM_HSMHost1Nic
219219
```
220220

221-
In the output, you will see this line:
221+
The output contains this line:
222222

223223
```json
224224
"privateIPAllocationMethod": "Dynamic",
@@ -232,7 +232,7 @@ To create a payment HSM with dynamic hosts, use the [New-AzDedicatedHsm](/powers
232232
New-AzDedicatedHsm -Name "myPaymentHSM" -ResourceGroupName "myResourceGroup" -Location "East US" -Sku "payShield10K_LMK1_CPS60" -StampId "stamp1" -SubnetId "<subnet-id>" -ManagementSubnetId "<ManagementSubnetId>"
233233
```
234234

235-
The output of the payment HSM creation will look like this:
235+
The output of the payment HSM creation looks like this:
236236

237237
```Output
238238
Name Provisioning State SKU Location
@@ -246,7 +246,7 @@ To see the newly created network interfaces, use the [Get-AzNetworkInterface](/p
246246
Get-AzNetworkInterface -ResourceGroupName myResourceGroup | Format-Table
247247
```
248248

249-
In the output, you will see host 1 and host 2 listed, as well as the management interface :
249+
In the output, host 1 and host 2 are listed, as well as the management interface:
250250

251251
```bash
252252
ResourceGroupName Name Location ...
@@ -256,9 +256,9 @@ myResourceGroup myPaymentHSM_HSMHost2Nic eastus ...
256256
myResourceGroup myPaymentHSM_HSMMgmtNic eastus ...
257257
```
258258

259-
If you view one of these network interfaces in the Azure port, you will see that the "Private IP allocation method" is "Dynamic":
259+
The Azure portal shows the "Private IP allocation method" as "Dynamic":
260260

261-
:::image type="content" source="./media/nic-dynamic.png" alt-text="Azure portal screenshow showing a network interface with a private IP allocation method of 'dynamic'." lightbox="./media/nic-dynamic.png":::
261+
:::image type="content" source="./media/nic-dynamic.png" alt-text="Azure portal screenshot showing a network interface with a private IP allocation method of 'dynamic'." lightbox="./media/nic-dynamic.png":::
262262

263263
---
264264

@@ -292,7 +292,7 @@ To see the newly created network interfaces, use the [az network nic list](/cli/
292292
az network nic list -g myResourceGroup -o table
293293
```
294294

295-
In the output, you will see host 1 and host 2 listed, as well as the management interface:
295+
In the output, host 1 and host 2 are listed, as well as the management interface:
296296

297297
```bash
298298
... Name NicType Primary ProvisioningState ResourceGroup ...
@@ -302,13 +302,13 @@ In the output, you will see host 1 and host 2 listed, as well as the management
302302
... myPaymentHSM_HSMMgmtNic Standard True Succeeded myResourceGroup ...
303303
```
304304

305-
To view the properties of a network interfaces, use the [az network nic show](/cli/azure/network/nic#az-network-nic-show) command, providing the resource group and name of the network interface:
305+
To view the properties of a network interface, use the [az network nic show](/cli/azure/network/nic#az-network-nic-show) command, providing the resource group and name of the network interface:
306306

307307
```azurecli-interactive
308308
az network nic show -g myresourcegroup -n myPaymentHSM_HSMHost1Nic
309309
```
310310

311-
In the output, you will see this line:
311+
The output contains this line:
312312

313313
```json
314314
"privateIPAllocationMethod": "Static",
@@ -322,7 +322,7 @@ To create a payment HSM with static hosts, use the [New-AzDedicatedHsm](/powersh
322322
New-AzDedicatedHsm -Name "myPaymentHSM" -ResourceGroupName "myResourceGroup" -Location "East US" -Sku "payShield10K_LMK1_CPS60" -StampId "stamp1" -SubnetId "<host-subnet-id>" -NetworkInterface (@{PrivateIPAddress = '10.0.0.5'}, @{PrivateIPAddress = '10.0.0.6'}) -ManagementNetworkInterface @{PrivateIPAddress = '10.1.0.5'} -ManagementSubnetId "<management-subnet-id>"
323323
```
324324

325-
The output of the payment HSM creation will look like this:
325+
The output of the payment HSM creation looks like this:
326326

327327
```Output
328328
Name Provisioning State SKU Location
@@ -336,7 +336,7 @@ To see the newly created network interfaces, use the [Get-AzNetworkInterface](/p
336336
Get-AzNetworkInterface -ResourceGroupName myResourceGroup | Format-Table
337337
```
338338

339-
In the output, you will see host 1 and host 2 listed, as well as the management interface :
339+
In the output, host 1 and host 2 are listed, as well as the management interface:
340340

341341
```bash
342342
ResourceGroupName Name Location ...
@@ -346,9 +346,9 @@ myResourceGroup myPaymentHSM_HSMHost2Nic eastus ...
346346
myResourceGroup myPaymentHSM_HSMMgmtNic eastus ...
347347
```
348348

349-
If you view one of these network interfaces in the Azure port, you will see that the "Private IP allocation method" is "Dynamic":
349+
The Azure portal shows the "Private IP allocation method" as "Static":
350350

351-
:::image type="content" source="./media/nic-static.png" alt-text="Azure portal screenshow showing a network interface with a private IP allocation method of 'static'." lightbox="./media/nic-static.png":::
351+
:::image type="content" source="./media/nic-static.png" alt-text="Azure portal screenshot showing a network interface with a private IP allocation method of 'static'." lightbox="./media/nic-static.png":::
352352

353353
---
354354

@@ -362,7 +362,7 @@ To see your payment HSM and its properties, use the Azure CLI [az dedicated-hsm
362362
az dedicated-hsm show --resource-group "myResourceGroup" --name "myPaymentHSM"
363363
```
364364

365-
To list all of your payment HSMs, use the [az dedicated-hsm list](/cli/azure/dedicated-hsm#az-dedicated-hsm-list) command. (You will find the output of this command more readable if you display it in table-format.)
365+
To list all of your payment HSMs, use the [az dedicated-hsm list](/cli/azure/dedicated-hsm#az-dedicated-hsm-list) command. (The output of this command is more readable when displayed in table-format.)
366366

367367
```azurecli-interactive
368368
az dedicated-hsm list --resource-group "myResourceGroup" -o table

articles/payment-hsm/create-payment-hsm.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ This tutorial describes how to create an Azure Payment HSM with the host and man
3232
- You must register the "Microsoft.HardwareSecurityModules" and "Microsoft.Network" resource providers, as well as the Azure Payment HSM features. Steps for doing so are at [Register the Azure Payment HSM resource provider and resource provider features](register-payment-hsm-resource-providers.md).
3333

3434
> [!WARNING]
35-
> You must apply the "FastPathEnabled" feature flag to **every** subscription ID, and add the "fastpathenabled" tag to **every** virtual network. For more details, see [Fastpathenabled](fastpathenabled.md).
35+
> You must apply the "FastPathEnabled" feature flag to **every** subscription ID, and add the "fastpathenabled" tag to **every** virtual network. For more information, see [Fastpathenabled](fastpathenabled.md).
3636
37-
To quickly ascertain if the resource providers and features are already registered, use the Azure CLI [az provider show](/cli/azure/provider#az-provider-show) command. (You will find the output of this command more readable if you display it in table-format.)
37+
To quickly ascertain if the resource providers and features are already registered, use the Azure CLI [az provider show](/cli/azure/provider#az-provider-show) command. (The output of this command is more readable when displayed in table-format.)
3838

3939
```azurecli-interactive
4040
az provider show --namespace "Microsoft.HardwareSecurityModules" -o table
@@ -56,7 +56,7 @@ This tutorial describes how to create an Azure Payment HSM with the host and man
5656
- You must register the "Microsoft.HardwareSecurityModules" and "Microsoft.Network" resource providers, as well as the Azure Payment HSM features. Steps for doing so are at [Register the Azure Payment HSM resource provider and resource provider features](register-payment-hsm-resource-providers.md).
5757

5858
> [!WARNING]
59-
> You must apply the "FastPathEnabled" feature flag to **every** subscription ID, and add the "fastpathenabled" tag to **every** virtual network. For more details, see [Fastpathenabled](fastpathenabled.md).
59+
> You must apply the "FastPathEnabled" feature flag to **every** subscription ID, and add the "fastpathenabled" tag to **every** virtual network. For more information, see [Fastpathenabled](fastpathenabled.md).
6060
6161
To quickly ascertain if the resource providers and features are already registered, use the Azure PowerShell [Get-AzProviderFeature](/powershell/module/az.resources/get-azproviderfeature) cmdlet:
6262

@@ -114,7 +114,7 @@ To verify that the VNet and subnet were created correctly, use the Azure CLI [az
114114
az network vnet subnet show -g "myResourceGroup" --vnet-name "myVNet" -n myPHSMSubnet
115115
```
116116

117-
Make note of the subnet's ID, as you will need it for the next step. The ID of the subnet will end with the name of the subnet:
117+
Make note of the subnet's ID, as you need it for the next step. The ID of the subnet ends with the name of the subnet:
118118

119119
```json
120120
"id": "/subscriptions/<subscriptionID>/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVNet/subnets/myPHSMSubnet",
@@ -159,7 +159,7 @@ To verify that the VNet was created correctly, use the Azure PowerShell [Get-AzV
159159
Get-AzVirtualNetwork -Name "myVNet" -ResourceGroupName "myResourceGroup"
160160
```
161161

162-
Make note of the subnet's ID, as you will need it for the next step. The ID of the subnet will end with the name of the subnet:
162+
Make note of the subnet's ID, which is used in the next step. The ID of the subnet ends with the name of the subnet:
163163

164164
```json
165165
"Id": "/subscriptions/<subscriptionID>/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVNet/subnets/myPHSMSubnet",
@@ -191,7 +191,7 @@ To see the newly created network interfaces, use the [az network nic list](/cli/
191191
az network nic list -g myResourceGroup -o table
192192
```
193193

194-
In the output, you will see host 1 and host 2 listed, as well as a management interface:
194+
In the output, host 1 and host 2 are listed, as well as a management interface:
195195

196196
```bash
197197
... Name NicType Primary ProvisioningState ResourceGroup ...
@@ -207,7 +207,7 @@ To see the newly created network interfaces, use the [az network nic show](/cli/
207207
az network nic show -g myresourcegroup -n myPaymentHSM_HSMHost1Nic
208208
```
209209

210-
In the output, you will see this line:
210+
The output contains this line:
211211

212212
```json
213213
"privateIPAllocationMethod": "Dynamic",
@@ -221,7 +221,7 @@ To create a payment HSM with dynamic hosts, use the [New-AzDedicatedHsm](/powers
221221
New-AzDedicatedHsm -Name "myPaymentHSM" -ResourceGroupName "myResourceGroup" -Location "East US" -Sku "payShield10K_LMK1_CPS60" -StampId "stamp1" -SubnetId "<subnet-id>"
222222
```
223223

224-
The output of the payment HSM creation will look like this:
224+
The output of the payment HSM creation looks like this:
225225

226226
```Output
227227
Name Provisioning State SKU Location
@@ -235,7 +235,7 @@ To see the newly created network interfaces, use the [Get-AzNetworkInterface](/p
235235
Get-AzNetworkInterface -ResourceGroupName myResourceGroup | Format-Table
236236
```
237237

238-
In the output, you will see host 1 and host 2 listed, as well as the management interface :
238+
In the output, host 1 and host 2 are listed, as well as the management interface:
239239

240240
```bash
241241
ResourceGroupName Name Location ...
@@ -245,9 +245,9 @@ myResourceGroup myPaymentHSM_HSMHost2Nic eastus ...
245245
myResourceGroup myPaymentHSM_HSMMgmtNic eastus ...
246246
```
247247

248-
If you view one of these network interfaces in the Azure port, you will see that the "Private IP allocation method" is "Dynamic":
248+
In the Azure portal, the "Private IP allocation method" is "Dynamic":
249249

250-
:::image type="content" source="./media/nic-dynamic.png" alt-text="Azure portal screenshow showing a network interface with a private IP allocation method of 'dynamic'." lightbox="./media/nic-dynamic.png":::
250+
:::image type="content" source="./media/nic-dynamic.png" alt-text="Azure portal screenshot showing a network interface with a private IP allocation method of 'dynamic'." lightbox="./media/nic-dynamic.png":::
251251

252252
---
253253

@@ -281,7 +281,7 @@ To see the newly created network interfaces, use the [az network nic list](/cli/
281281
az network nic list -g myResourceGroup -o table
282282
```
283283

284-
In the output, you will see host 1 and host 2 listed, as well as the management interface:
284+
In the output, host 1 and host 2 are listed, as well as the management interface:
285285

286286
```bash
287287
... Name NicType Primary ProvisioningState ResourceGroup ...
@@ -291,13 +291,13 @@ In the output, you will see host 1 and host 2 listed, as well as the management
291291
... myPaymentHSM_HSMMgmtNic Standard True Succeeded myResourceGroup ...
292292
```
293293

294-
To view the properties of a network interfaces, use the [az network nic show](/cli/azure/network/nic#az-network-nic-show) command, providing the resource group and name of the network interface:
294+
To view the properties of a network interface, use the [az network nic show](/cli/azure/network/nic#az-network-nic-show) command, providing the resource group and name of the network interface:
295295

296296
```azurecli-interactive
297297
az network nic show -g myresourcegroup -n myPaymentHSM_HSMHost1Nic
298298
```
299299

300-
In the output, you will see this line:
300+
The output contains this line:
301301

302302
```json
303303
"privateIPAllocationMethod": "Static",
@@ -317,7 +317,7 @@ If you wish to also specify a static IP for the management host, you can add:
317317
-ManagementNetworkInterface @{PrivateIPAddress = '10.0.07'} -ManagementSubnetId "<subnetId>"
318318
```
319319

320-
The output of the payment HSM creation will look like this:
320+
The output of the payment HSM creation looks like this:
321321

322322
```Output
323323
Name Provisioning State SKU Location
@@ -331,7 +331,7 @@ To see the newly created network interfaces, use the [Get-AzNetworkInterface](/p
331331
Get-AzNetworkInterface -ResourceGroupName myResourceGroup | Format-Table
332332
```
333333

334-
In the output, you will see host 1 and host 2 listed, as well as the management interface :
334+
In the output, host 1 and host 2 are listed, as well as the management interface:
335335

336336
```bash
337337
ResourceGroupName Name Location ...
@@ -341,9 +341,9 @@ myResourceGroup myPaymentHSM_HSMHost2Nic eastus ...
341341
myResourceGroup myPaymentHSM_HSMMgmtNic eastus ...
342342
```
343343

344-
If you view one of these network interfaces in the Azure port, you will see that the "Private IP allocation method" is "Dynamic":
344+
The Azure portal shows the "Private IP allocation method" as "Dynamic":
345345

346-
:::image type="content" source="./media/nic-static.png" alt-text="Azure portal screenshow showing a network interface with a private IP allocation method of 'static'." lightbox="./media/nic-static.png":::
346+
:::image type="content" source="./media/nic-static.png" alt-text="Azure portal screenshot showing a network interface with a private IP allocation method of 'static'." lightbox="./media/nic-static.png":::
347347

348348
---
349349

@@ -357,7 +357,7 @@ To see your payment HSM and its properties, use the Azure CLI [az dedicated-hsm
357357
az dedicated-hsm show --resource-group "myResourceGroup" --name "myPaymentHSM"
358358
```
359359

360-
To list all of your payment HSMs, use the [az dedicated-hsm list](/cli/azure/dedicated-hsm#az-dedicated-hsm-list) command. (You will find the output of this command more readable if you display it in table-format.)
360+
To list all of your payment HSMs, use the [az dedicated-hsm list](/cli/azure/dedicated-hsm#az-dedicated-hsm-list) command. (The output of this command is more readable when displayed in table-format.)
361361

362362
```azurecli-interactive
363363
az dedicated-hsm list --resource-group "myResourceGroup" -o table

0 commit comments

Comments
 (0)