Skip to content

Commit cadbec2

Browse files
committed
Corrected capitalization
1 parent 52d32cd commit cadbec2

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ ms.service: key-vault
99
ms.subservice: keys
1010
ms.author: tarcher
1111
ms.date: 4/13/2023
12-
# Customer intent: As a security admin who is new to Azure, I want to use Key Vault to securely store keys and passwords in Azure.
1312
---
1413

1514
# Quickstart: Create an Azure key vault and key using Terraform
@@ -24,8 +23,8 @@ In this article, you learn how to:
2423
> * Create a random value for the Azure resource group name using [random_pet](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/pet)
2524
> * Create an Azure resource group using [azurerm_resource_group](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/resource_group)
2625
> * Create a random value using [random_string](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string)
27-
> * Create an Azure Key Vault using [azurerm_key_vault](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/key_vault)
28-
> * Create an Azure Key Vault key using [azurerm_key_vault_key](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/key_vault_key)
26+
> * Create an Azure key vault using [azurerm_key_vault](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/key_vault)
27+
> * Create an Azure key vault key using [azurerm_key_vault_key](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/key_vault_key)
2928
3029
[!INCLUDE [AI attribution](../../../includes/ai-generated-attribution.md)]
3130

@@ -94,7 +93,7 @@ In this article, you learn how to:
9493
$azurerm_key_vault_name=$(terraform output -raw azurerm_key_vault_name)
9594
```
9695

97-
1. Run [Get-AzKeyVault](/powershell/module/az.keyvault/get-azkeyvault) to display information about the new Key Vault.
96+
1. Run [Get-AzKeyVault](/powershell/module/az.keyvault/get-azkeyvault) to display information about the new key vault.
9897

9998
```azurepowershell
10099
Get-AzKeyVaultKey -VaultName $azurerm_key_vault_name

0 commit comments

Comments
 (0)