Skip to content

Commit 65685bb

Browse files
committed
update
1 parent d9c5497 commit 65685bb

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

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

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.author: mbaldwin
1313
---
1414
# Quickstart: Set and retrieve a certificate from Azure Key Vault using Azure PowerShell
1515

16-
In this quickstart, you create a key vault in Azure Key Vault with Azure PowerShell. Azure Key Vault is a cloud service that works as a secure secrets store. You can securely store keys, passwords, certificates, and other secrets. For more information on Key Vault you may review the [Overview](../general/overview.md). Azure PowerShell is used to create and manage Azure resources using commands or scripts. Once that you have completed that, you will store a certificate.
16+
In this quickstart, you create a key vault in Azure Key Vault with Azure PowerShell. Azure Key Vault is a cloud service that works as a secure secrets store. You can securely store keys, passwords, certificates, and other secrets. For more information on Key Vault, review the [Overview](../general/overview.md). Azure PowerShell is used to create and manage Azure resources using commands or scripts. Afterwards, you store a certificate.
1717

1818
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
1919

@@ -40,9 +40,9 @@ Connect-AzAccount
4040

4141
## Add a certificate to Key Vault
4242

43-
To add a certificate to the vault, you just need to take a couple of additional steps. This certificate could be used by an application.
43+
To can now add a certificate to the vault. This certificate could be used by an application.
4444

45-
Type the commands below to create a self-signed certificate with policy called **ExampleCertificate** :
45+
Use these commands to create a self-signed certificate with policy called **ExampleCertificate** :
4646

4747
```azurepowershell-interactive
4848
$Policy = New-AzKeyVaultCertificatePolicy -SecretContentType "application/x-pkcs12" -SubjectName "CN=contoso.com" -IssuerName "Self" -ValidityInMonths 6 -ReuseKeyOnRenewal
@@ -58,8 +58,6 @@ To view previously stored certificate:
5858
Get-AzKeyVaultCertificate -VaultName "<your-unique-keyvault-name>" -Name "ExampleCertificate"
5959
```
6060

61-
Now, you have created a Key Vault, stored a certificate, and retrieved it.
62-
6361
**Troubleshooting**:
6462

6563
Operation returned an invalid status code 'Forbidden'
@@ -78,7 +76,7 @@ Set-AzKeyVaultAccessPolicy -VaultName <KeyVaultName> -ObjectId <AzureObjectID> -
7876

7977
## Next steps
8078

81-
In this quickstart you created a Key Vault and stored a certificate in it. To learn more about Key Vault and how to integrate it with your applications, continue on to the articles below.
79+
In this quickstart, you created a Key Vault and stored a certificate in it. To learn more about Key Vault and how to integrate it with your applications, continue on to the articles below.
8280

8381
- Read an [Overview of Azure Key Vault](../general/overview.md)
8482
- See the reference for the [Azure PowerShell Key Vault cmdlets](/powershell/module/az.keyvault/)

0 commit comments

Comments
 (0)