forked from d365collaborative/d365fo.tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AzureLogicApp-Template.json
132 lines (132 loc) · 5.81 KB
/
AzureLogicApp-Template.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"connections_office365_name": {
"defaultValue": "office365",
"type": "String"
},
"workflows_NotifyWhenDone_name": {
"defaultValue": "NotifyWhenDone",
"type": "String"
}
},
"variables": {"ConnectionName": "[email protected]"},
"resources": [
{
"comments": "Generalized from resource: '/subscriptions/ee4bc22b-1de8-4b0a-a606-ebb2da90c06d/resourceGroups/LogicApps/providers/Microsoft.Logic/workflows/NotifyWhenDone'.",
"type": "Microsoft.Logic/workflows",
"name": "[parameters('workflows_NotifyWhenDone_name')]",
"apiVersion": "2017-07-01",
"location": "westeurope",
"tags": {},
"scale": null,
"properties": {
"state": "Enabled",
"definition": {
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"$connections": {
"defaultValue": {},
"type": "Object"
}
},
"triggers": {
"manual": {
"type": "Request",
"kind": "Http",
"inputs": {
"method": "POST",
"schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"email": {
"type": "string"
},
"message": {
"type": "string"
},
"subject": {
"type": "string"
}
},
"required": [
"email",
"subject",
"message"
],
"type": "object"
}
}
}
},
"actions": {
"Response": {
"runAfter": {
"Send_an_email": [
"Succeeded"
]
},
"type": "Response",
"kind": "Http",
"inputs": {
"body": "OK!",
"statusCode": 200
}
},
"Send_an_email": {
"runAfter": {},
"type": "ApiConnection",
"inputs": {
"body": {
"Body": "@triggerBody()['message']",
"Subject": "@triggerBody()['subject']",
"To": "@triggerBody()['email']"
},
"host": {
"connection": {
"name": "@parameters('$connections')['office365']['connectionId']"
}
},
"method": "post",
"path": "/Mail"
}
}
},
"outputs": {}
},
"parameters": {
"$connections": {
"value": {
"office365": {
"connectionId": "[resourceId('Microsoft.Web/connections', parameters('connections_office365_name'))]",
"connectionName": "office365",
"id": "/subscriptions/ee4bc22b-1de8-4b0a-a606-ebb2da90c06d/providers/Microsoft.Web/locations/westeurope/managedApis/office365"
}
}
}
}
},
"dependsOn": [
"[resourceId('Microsoft.Web/connections', parameters('connections_office365_name'))]"
]
},
{
"comments": "Generalized from resource: '/subscriptions/ee4bc22b-1de8-4b0a-a606-ebb2da90c06d/resourceGroups/LogicApps/providers/Microsoft.Web/connections/office365'.",
"type": "Microsoft.Web/connections",
"name": "[parameters('connections_office365_name')]",
"apiVersion": "2016-06-01",
"location": "westeurope",
"scale": null,
"properties": {
"displayName": "[variables('ConnectionName')]",
"customParameterValues": {},
"api": {
"id": "[concat('/subscriptions/ee4bc22b-1de8-4b0a-a606-ebb2da90c06d/providers/Microsoft.Web/locations/westeurope/managedApis/', parameters('connections_office365_name'))]"
}
},
"dependsOn": []
}
]
}