File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
articles/key-vault/secrets Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
title : Azure Quickstart - Create an Azure key vault and a secret using Bicep | Microsoft Docs
3
3
description : Quickstart showing how to create Azure key vaults, and add secrets to the vaults using Bicep.
4
4
services : key-vault
5
- author : rkarlin
5
+ author : msmbaldwin
6
6
tags : azure-resource-manager
7
7
ms.service : key-vault
8
8
ms.subservice : secrets
9
9
ms.topic : quickstart
10
10
ms.custom : mvc, subject-armqs, devx-track-azurepowershell, mode-arm
11
11
ms.date : 04/08/2022
12
- ms.author : rkarlin
12
+ ms.author : mbaldwin
13
13
# 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.
14
14
---
15
15
@@ -66,14 +66,14 @@ Two Azure resources are defined in the Bicep file:
66
66
67
67
```azurecli
68
68
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>
70
70
```
71
71
72
72
# [PowerShell](#tab/PowerShell)
73
73
74
74
```azurepowershell
75
75
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>"
77
77
```
78
78
79
79
---
You can’t perform that action at this time.
0 commit comments