Skip to content

Commit 25c0a46

Browse files
committed
edits
1 parent d38ae2e commit 25c0a46

7 files changed

+13
-13
lines changed

articles/key-vault/secrets/javascript-developer-guide-backup-secrets.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: key-vault
77
ms.subservice: secrets
88
ms.topic: how-to
99
ms.custom: devx-track-js
10-
ms.date: 05/17/2023
10+
ms.date: 05/22/2023
1111
ms.author: mbaldwin
1212
#Customer intent: As a JavaScript developer who is new to Azure, I want to backup a secret from the Key Vault with the SDK.
1313
---

articles/key-vault/secrets/javascript-developer-guide-delete-secret.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: key-vault
77
ms.subservice: secrets
88
ms.topic: how-to
99
ms.custom: devx-track-js
10-
ms.date: 05/17/2023
10+
ms.date: 05/22/2023
1111
ms.author: mbaldwin
1212
#Customer intent: As a JavaScript developer who is new to Azure, I want to delete a secret from the Key Vault with the SDK.
1313
---

articles/key-vault/secrets/javascript-developer-guide-enable-disable-secret.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: key-vault
77
ms.subservice: secrets
88
ms.topic: how-to
99
ms.custom: devx-track-js
10-
ms.date: 05/17/2023
10+
ms.date: 05/22/2023
1111
ms.author: mbaldwin
1212
#Customer intent: As a JavaScript developer who is new to Azure, I want to enable a secret from the Key Vault with the SDK.
1313
---
@@ -38,7 +38,7 @@ This method returns the [SecretProperties](/javascript/api/@azure/keyvault-secre
3838

3939
## Disable a new secret
4040

41-
To disable a secret when it's created, use the [setSecret]() method with the option for **enabled** set to false.
41+
To disable a secret when it's created, use the [setSecret](/javascript/api/@azure/keyvault-secrets/secretclient#@azure-keyvault-secrets-secretclient-setsecret) method with the option for **enabled** set to false.
4242

4343
```javascript
4444
const mySecretName = 'mySecret';

articles/key-vault/secrets/javascript-developer-guide-find-secret.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ ms.service: key-vault
77
ms.subservice: secrets
88
ms.topic: how-to
99
ms.custom: devx-track-js
10-
ms.date: 05/17/2023
10+
ms.date: 05/22/2023
1111
ms.author: mbaldwin
1212
#Customer intent: As a JavaScript developer who is new to Azure, I want to find or list a secret from the Key Vault with the SDK.
1313
---
1414
# List or find a secret in Azure Key Vault with JavaScript
1515

1616
Create the [SecretClient](/javascript/api/@azure/keyvault-secrets/secretclient) with the appropriate [programmatic authentication credentials](javascript-developer-guide-get-started.md#authorize-access-and-connect-to-key-vault), then use the client to find a secret from Azure Key Vault.
1717

18-
All list methods return an iterable. You can get all items in the list or chain the [byPage()](/javascript/api/@azure/core-paging/pagedasynciterableiterator#@azure-core-paging-pagedasynciterableiterator-bypage) method to iterate a page of items at a time.
18+
All list methods return an iterable. You can get all items in the list or chain the [byPage](/javascript/api/@azure/core-paging/pagedasynciterableiterator#@azure-core-paging-pagedasynciterableiterator-bypage) method to iterate a page of items at a time.
1919

20-
Once you have a secret's properties, you can then use the [**getSecret**](javascript-developer-guide-get-secret.md#get-current-version-of-secret) method to get the secret's value.
20+
Once you have a secret's properties, you can then use the [getSecret](javascript-developer-guide-get-secret.md#get-current-version-of-secret) method to get the secret's value.
2121

2222
## List all secrets
2323

articles/key-vault/secrets/javascript-developer-guide-get-secret.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: key-vault
77
ms.subservice: secrets
88
ms.topic: how-to
99
ms.custom: devx-track-js
10-
ms.date: 05/17/2023
10+
ms.date: 05/22/2023
1111
ms.author: mbaldwin
1212
#Customer intent: As a JavaScript developer who is new to Azure, I want to get a secret from the Key Vault with the SDK.
1313
---

articles/key-vault/secrets/javascript-developer-guide-get-started.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: key-vault
77
ms.subservice: secrets
88
ms.topic: how-to
99
ms.custom: devx-track-js
10-
ms.date: 05/17/2023
10+
ms.date: 05/22/2023
1111
ms.author: mbaldwin
1212
#Customer intent: As a JavaScript developer who is new to Azure, I want to know the high level steps necessary to use Key Vault secrets in JavaScript.
1313
---
@@ -19,9 +19,9 @@ This article shows you how to connect to Azure Key Vault by using the Azure Key
1919

2020
## Prerequisites
2121

22-
- An Azure subscription
23-
- [Azure Key Vault](/azure/key-vault/) instance with appropriate access policies configured
24-
- Node.js version LTS
22+
- An Azure subscription - [create one for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
23+
- [Azure Key Vault](../general/quick-create-cli.md) instance. Review [the access policies](../general/assign-access-policy.md) on your Key Vault to include the permissions necessary for the specific tasks performed in code.
24+
- [Node.js version LTS](https://nodejs.org/)
2525

2626
## Set up your project
2727

articles/key-vault/secrets/javascript-developer-guide-set-update-rotate-secret.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: key-vault
77
ms.subservice: secrets
88
ms.topic: how-to
99
ms.custom: devx-track-js
10-
ms.date: 05/17/2023
10+
ms.date: 05/22/2023
1111
ms.author: mbaldwin
1212
#Customer intent: As a JavaScript developer who is new to Azure, I want to create, update, or rotate a secret to the Key Vault with the SDK.
1313
---

0 commit comments

Comments
 (0)