forked from fiveisprime/node-todo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUntitled-1.txt
64 lines (64 loc) · 1.33 KB
/
Untitled-1.txt
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"myparam": {
"type": "string"
},
"artifactsLocation": {
"type": "string"
},
"location": {
"type": "string",
"defaultValue": "westus"
}
},
"resources": [
{
"name": "nestedDeployment1",
"type": "Microsoft.Resources/deployments",
"apiVersion": "2019-10-01",
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "[concat('artifactsLocation', '/nestedTemplates/nestedTemplate.json', 'artifactsLocationSasToken')]",
"contentVersion": "1.0.0.0"
},
"parameters": {
}
}
},
{
"name": "automationCertificate1",
"type": "Microsoft.Automation/automationAccounts/certificates",
"apiVersion": "2015-10-31",
"dependsOn": [
],
"properties": {
"base64Value": "base64Value",
"description": "description",
"thumbprint": "thumbprint",
"isExportable": true
}
},
{
"name": "automationCertificate2",
"type": "Microsoft.Automation/automationAccounts/certificates",
"apiVersion": "2015-10-31",
"dependsOn": [
],
"properties": {
"base64Value": "base64Value",
"description": "description",
"thumbprint": "thumbprint",
"isExportable": true
}
}
],
"outputs": {
"output1": {
"type": "string",
"value": ""
}
}
}