Skip to content

Commit bddc9e9

Browse files
committed
Add quotes to PowerShell string parameters
1 parent 42ba2fe commit bddc9e9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

articles/key-vault/general/apps-api-keys-secrets.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,9 +191,9 @@ $privateEndpoint = New-AzPrivateEndpoint -Name "myPrivateEndpoint" `
191191
You can create firewall rules on the Azure Key Vault instance using the Azure PowerShell [Add-AzKeyVaultNetworkRule](/powershell/module/az.keyvault/add-azkeyvaultnetworkrule) cmdlet, substituting the appropriate key vault names, resource groups, subnet, and subnet mask information:
192192

193193
```powershell
194-
Add-AzKeyVaultNetworkRule -VaultName <vault-name> `
195-
-ResourceGroupName <resource-group> `
196-
-IPAddress <trusted-ip-address>/32
194+
Add-AzKeyVaultNetworkRule -VaultName "<vault-name>" `
195+
-ResourceGroupName "<resource-group>" `
196+
-IPAddress "<trusted-ip-address>/32"
197197
```
198198

199199
---

0 commit comments

Comments
 (0)