Skip to content

Commit 97d30d0

Browse files
author
Steve Lee (POWERSHELL HE/HIM) (from Dev Box)
committed
add azcli as example
1 parent 59a0aa0 commit 97d30d0

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"$schema": "https://aka.ms/dsc/schemas/v3/bundled/extension/manifest.json",
3+
"type": "Microsoft.Azure.CLI/KeyVault",
4+
"version": "1.0.0",
5+
"description": "Retrieve secrets from Azure KeyVault. Requires AzCLI to already be installed.",
6+
"secret": {
7+
"executable": "az.cmd",
8+
"outputKind": "PlainText",
9+
"args": [
10+
"keyvault",
11+
"secret",
12+
"show",
13+
{
14+
"vaultArg": "--vault-name"
15+
},
16+
{
17+
"nameArg": "--name"
18+
},
19+
"--query",
20+
"value",
21+
"--output",
22+
"tsv"
23+
]
24+
}
25+
}

0 commit comments

Comments
 (0)