forked from mrsmitty/logic-app-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azuredeploy.json
51 lines (50 loc) · 1.76 KB
/
azuredeploy.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
},
"variables": {
"logicAppName": "[concat('lap-test-', uniqueString(resourceGroup().name))]",
"storageAccountName": "[concat('laptest', uniqueString(resourceGroup().name))]"
},
"resources": [
{
"type": "Microsoft.Logic/workflows",
"apiVersion": "2019-05-01",
"name": "[variables('logicAppName')]",
"location": "[resourceGroup().location]",
"properties": {
"definition": {
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"triggers": {},
"actions": {},
"outputs": {}
},
"parameters": {}
}
},
{
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2019-06-01",
"name": "[variables('storageAccountName')]",
"location": "[resourceGroup().location]",
"kind": "StorageV2",
"sku": { "name": "Standard_LRS" },
"resources": [
{
"type": "blobServices/containers",
"apiVersion": "2019-06-01",
"name": "default/pull-requests",
"dependsOn": [ "[variables('storageAccountName')]" ],
"properties":{
"publicAccess": "Container"
}
}
]
}
],
"outputs": {
}
}