Skip to content

Commit ff19ad2

Browse files
committed
Updates
1 parent 1549a2d commit ff19ad2

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

articles/key-vault/certificates/about-certificates.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ tags: azure-resource-manager
88
ms.service: key-vault
99
ms.subservice: certificates
1010
ms.topic: overview
11-
ms.date: 09/04/2019
11+
ms.date: 01/04/2023
1212
ms.author: mbaldwin
1313
---
1414

1515
# About Azure Key Vault certificates
1616

1717
Azure Key Vault certificate support provides for management of your X.509 certificates and the following behaviors:
1818

19-
- Allows a certificate owner to create a certificate through a key vault creation process or through the import of an existing certificate. This includes both self-signed certificates and certificates that are generated from a certificate authority (CA).
19+
- Allows a certificate owner to create a certificate through a key vault creation process or through the import of an existing certificate. Imported certificates include both self-signed certificates and certificates that are generated from a certificate authority (CA).
2020
- Allows a Key Vault certificate owner to implement secure storage and management of X.509 certificates without interacting with private key material.
2121
- Allows a certificate owner to create a policy that directs Key Vault to manage the lifecycle of a certificate.
2222
- Allows a certificate owner to provide contact information for notifications about the lifecycle events of expiration and renewal.
@@ -66,7 +66,7 @@ A Key Vault certificate has the following attribute:
6666

6767
- `enabled`: This Boolean attribute is optional. Default is `true`. It can be specified to indicate if the certificate data can be retrieved as a secret or operable as a key.
6868

69-
This attribute is also used in conjunction with `nbf` and `exp` when an operation occurs between `nbf` and `exp`, but only if `enabled` is set to `true`. Operations outside the `nbf` and `exp` window are automatically disallowed.
69+
This attribute is also used with `nbf` and `exp` when an operation occurs between `nbf` and `exp`, but only if `enabled` is set to `true`. Operations outside the `nbf` and `exp` window are automatically disallowed.
7070

7171
A response includes these additional read-only attributes:
7272

@@ -96,7 +96,7 @@ At a high level, a certificate policy contains the following information:
9696
- X.509 certificate properties, which include subject name, subject alternate names, and other properties that are used to create an X.509 certificate request.
9797
- Key properties, which include key type, key length, exportable, and `ReuseKeyOnRenewal` fields. These fields instruct Key Vault on how to generate a key.
9898

99-
[Supported key types](/rest/api/keyvault/certificates/create-certificate/create-certificate#jsonwebkeytype) are RSA, RSA-HSM, EC, EC-HSM, and oct.
99+
[Supported key types](/rest/api/keyvault/certificates/create-certificate/create-certificate#jsonwebkeytype) are RSA, RSA-HSM, EC, EC-HSM, and oct.
100100
- Secret properties, such as the content type of an addressable secret to generate the secret value, for retrieving a certificate as a secret.
101101
- Lifetime actions for the Key Vault certificate. Each lifetime action contains:
102102

articles/key-vault/certificates/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ metadata:
1212
ms.topic: landing-page # Required
1313
author: msmbaldwin
1414
ms.author: mbaldwin
15-
ms.date: 04/07/2020 #Required; mm/dd/yyyy format.
15+
ms.date: 01/04/2023
1616

1717
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new
1818

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Quickstart - Azure Key Vault certificate client library for JavaScript (
33
description: Learn how to create, retrieve, and delete certificates from an Azure key vault using the JavaScript client library
44
author: msmbaldwin
55
ms.author: mbaldwin
6-
ms.date: 12/13/2021
6+
ms.date: 01/04/2023
77
ms.service: key-vault
88
ms.subservice: certificates
99
ms.topic: quickstart
@@ -33,7 +33,7 @@ For more information about Key Vault and certificates, see:
3333
- [Azure portal](../general/quick-create-portal.md)
3434
- [Azure PowerShell](../general/quick-create-powershell.md)
3535

36-
This quickstart assumes you are running [Azure CLI](/cli/azure/install-azure-cli).
36+
This quickstart assumes you're running [Azure CLI](/cli/azure/install-azure-cli).
3737

3838
## Sign in to Azure
3939

@@ -111,7 +111,7 @@ export KEY_VAULT_NAME=<your-key-vault-name>
111111

112112
## Code example
113113

114-
The code samples below will show you how to create a client, set a certificate, retrieve a certificate, and delete a certificate.
114+
These code samples demonstrate how to create a client, set a certificate, retrieve a certificate, and delete a certificate.
115115

116116
### Set up the app framework
117117

@@ -233,11 +233,11 @@ The code samples below will show you how to create a client, set a certificate,
233233

234234
## Integrating with App Configuration
235235

236-
The Azure SDK provides a helper method, [parseKeyVaultCertificateIdentifier](/javascript/api/@azure/keyvault-certificates#parseKeyVaultCertificateIdentifier_string_), to parse the given Key Vault certificate ID. This is necessary if you use [App Configuration](../../azure-app-configuration/index.yml) references to Key Vault. App Config stores the Key Vault certificate ID. You need the _parseKeyVaultCertificateIdentifier_ method to parse that ID to get the certificate name. Once you have the certificate name, you can get the current certificate using code from this quickstart.
236+
The Azure SDK provides a helper method, [parseKeyVaultCertificateIdentifier](/javascript/api/@azure/keyvault-certificates#parseKeyVaultCertificateIdentifier_string_), to parse the given Key Vault certificate ID, which is necessary if you use [App Configuration](../../azure-app-configuration/index.yml) references to Key Vault. App Config stores the Key Vault certificate ID. You need the _parseKeyVaultCertificateIdentifier_ method to parse that ID to get the certificate name. Once you have the certificate name, you can get the current certificate using code from this quickstart.
237237

238238
## Next steps
239239

240-
In this quickstart, you created a key vault, stored a certificate, and retrieved that certificate. To learn more about Key Vault and how to integrate it with your applications, continue on to the articles below.
240+
In this quickstart, you created a key vault, stored a certificate, and retrieved that certificate. To learn more about Key Vault and how to integrate it with your applications, continue on to these articles.
241241

242242
- Read an [Overview of Azure Key Vault](../general/overview.md)
243243
- Read an [Overview of certificates](about-certificates.md)

0 commit comments

Comments
 (0)