Skip to content

Commit 26b5231

Browse files
Merge pull request #214676 from msmbaldwin/patch-163
Update quick-create-bicep.md
2 parents daeb45a + bf6652b commit 26b5231

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/key-vault/secrets/quick-create-bicep.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
title: Azure Quickstart - Create an Azure key vault and a secret using Bicep | Microsoft Docs
33
description: Quickstart showing how to create Azure key vaults, and add secrets to the vaults using Bicep.
44
services: key-vault
5-
author: rkarlin
5+
author: msmbaldwin
66
tags: azure-resource-manager
77
ms.service: key-vault
88
ms.subservice: secrets
99
ms.topic: quickstart
1010
ms.custom: mvc, subject-armqs, devx-track-azurepowershell, mode-arm
1111
ms.date: 04/08/2022
12-
ms.author: rkarlin
12+
ms.author: mbaldwin
1313
#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.
1414
---
1515

@@ -66,14 +66,14 @@ Two Azure resources are defined in the Bicep file:
6666
6767
```azurecli
6868
az group create --name exampleRG --location eastus
69-
az deployment group create --resource-group exampleRG --template-file main.bicep --parameters keyVaultName=<vault-name> objectID=<object-id>
69+
az deployment group create --resource-group exampleRG --template-file main.bicep --parameters keyVaultName=<vault-name> objectId=<object-id>
7070
```
7171
7272
# [PowerShell](#tab/PowerShell)
7373
7474
```azurepowershell
7575
New-AzResourceGroup -Name exampleRG -Location eastus
76-
New-AzResourceGroupDeployment -ResourceGroupName exampleRG -TemplateFile ./main.bicep -keyVaultName "<vault-name>" -objectID "<object-id>"
76+
New-AzResourceGroupDeployment -ResourceGroupName exampleRG -TemplateFile ./main.bicep -keyVaultName "<vault-name>" -objectId "<object-id>"
7777
```
7878
7979
---

0 commit comments

Comments
 (0)