-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvaultCertificates.json
33 lines (33 loc) · 1.06 KB
/
vaultCertificates.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "2017.09.01.0",
"parameters": {
"certificateUrl": {
"type": "string",
"metadata": {
"description": "This is the URL of a certificate that has been uploaded to Key Vault as a secret."
}
},
"certificateStore": {
"type": "string",
"defaultValue": null,
"metadata": {
"description": "For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added.For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name .crt for the X509 certificate file and .prv for private key."
}
}
},
"variables": {
"vaultCertificates": {
"certificateUrl": "[parameters('certificateUrl')]",
"certificateStore": "[parameters('certificateStore')]"
}
},
"resources": [
],
"outputs": {
"vaultCertificates": {
"type": "object",
"value": "[variables('vaultCertificates')]"
}
}
}