Skip to content

Commit 0b38e48

Browse files
committed
updates
1 parent 7a8de7b commit 0b38e48

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

articles/key-vault/keys/quick-create-node.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ Create a Node.js application that uses your key vault.
6868
6969
## Install Key Vault packages
7070
71-
1. Using the terminal, install the Azure Key Vault secrets library, [@azure/keyvault-keys](https://www.npmjs.com/package/@azure/keyvault-keys) for Node.js.
71+
1. Using the terminal, install the Azure Key Vault secrets client library, [@azure/keyvault-keys](https://www.npmjs.com/package/@azure/keyvault-keys) for Node.js.
7272
7373
```terminal
7474
npm install @azure/keyvault-keys
7575
```
7676
77-
1. Install the Azure Identity library, [@azure/identity](https://www.npmjs.com/package/@azure/identity) package to authenticate to a Key Vault.
77+
1. Install the Azure Identity client library, [@azure/identity](https://www.npmjs.com/package/@azure/identity) package to authenticate to a Key Vault.
7878
7979
```terminal
8080
npm install @azure/identity
@@ -93,14 +93,6 @@ az keyvault set-policy --name <YourKeyVaultName> --upn [email protected] --key-per
9393

9494
This application is using key vault name as an environment variable called `KEY_VAULT_NAME`.
9595

96-
```azurecli
97-
az keyvault set-policy --name <your-key-vault-name> --upn [email protected] --secret-permissions delete get list set purge
98-
```
99-
100-
## Set environment variables
101-
102-
This application is using key vault name as an environment variable called `KEY_VAULT_NAME`.
103-
10496
### [Windows](#tab/windows)
10597

10698
```cmd

0 commit comments

Comments
 (0)