-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathazuredeploy.json
273 lines (273 loc) · 8.48 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"hostingPlanName": {
"type": "string",
"minLength": 1,
"metadata": {
"description": "Azure App Services use \"Hosting Plans\" to define the compute resources that will run your app. The name of this plan will also be used elsewhere throughout this deployment, as part of your database host name and your default web site name"
}
},
"skuName": {
"type": "string",
"defaultValue": "F1",
"allowedValues": [
"F1",
"D1",
"B1",
"B2",
"B3",
"S1",
"S2",
"S3",
"P1",
"P2",
"P3",
"P4"
],
"metadata": {
"description": "Describes plan's pricing tier and capacity - this can be changed after deployment. Check details at https://azure.microsoft.com/en-us/pricing/details/app-service/"
}
},
"skuCapacity": {
"type": "int",
"defaultValue": 1,
"minValue": 1,
"metadata": {
"description": "Describes plan's instance count (how many distinct web servers will be deployed in the farm) - this can be changed after deployment"
}
},
"tenantName": {
"type": "string",
"metadata": {
"description": "Required: the name of the Azure Active Directory tenant that will host your auth apps (like contoso.com, or contoso.onmicrosoft.com)"
}
},
"tenantId": {
"type": "string",
"metadata": {
"description": "Required: the GUID of the tenant above"
}
},
"clientId_admin": {
"type": "string",
"metadata": {
"description": "Required: the application ID GUID of your administrative auth app (see Readme for details)"
}
},
"clientSecret_admin": {
"type": "string",
"metadata": {
"description": "Required: the application secret for your administrative auth app"
}
},
"clientId_preAuth": {
"type": "string",
"metadata": {
"description": "Required: the application ID GUID of your user pre-auth auth app (see Readme for details)"
}
},
"clientSecret_preAuth": {
"type": "string",
"metadata": {
"description": "Required: the application secret for your user pre-auth auth app"
}
},
"mailServerFqdn": {
"type": "string",
"defaultValue": "",
"metadata": {
"description": "Optional, you may configure your app to send custom templated invitation emails - if you don't fill these out, you can have the B2B service deliver them for you"
}
},
"smtpLogin": {
"type": "string",
"defaultValue": "",
"metadata": {
"description": "Optional, login name of your SMTP server"
}
},
"smptPassword": {
"type": "string",
"defaultValue": "",
"metadata": {
"description": "Optional, password for your SMTP server"
}
},
"smptPort": {
"type": "int",
"defaultValue": 587,
"metadata": {
"description": "Optional, the SMTP port for your SMTP server (indicating whether to use encryption or not for custom email sending)"
}
},
"repoURL": {
"type": "string",
"defaultValue": "https://github.com/Azure/active-directory-dotnet-graphapi-b2bportal-web.git",
"metadata": {
"description": "The path to the application source files on GitHub"
}
},
"branch": {
"type": "string",
"defaultValue": "master",
"metadata": {
"description": "The main branch of the application repo"
}
}
},
"variables": {
"webSiteName": "[concat(tolower(parameters('hostingPlanName')), '-web', uniqueString(resourceGroup().id))]",
"docDbHost": "[concat(tolower(parameters('hostingPlanName')), '-db', uniqueString(resourceGroup().id))]",
"docDbName": "B2BRequests",
"docDbCollection": "GuestRequests",
"mailEnabled": "1"
},
"resources": [
{
"type": "Microsoft.DocumentDB/databaseAccounts",
"kind": "GlobalDocumentDB",
"name": "[variables('docDbHost')]",
"apiVersion": "2015-04-08",
"location": "[resourceGroup().location]",
"tags": {
"displayName": "DocDB"
},
"properties": {
"databaseAccountOfferType": "Standard",
"consistencyPolicy": {
"defaultConsistencyLevel": "Session",
"maxIntervalInSeconds": 5,
"maxStalenessPrefix": 100
},
"name": "[variables('docDbHost')]"
},
"dependsOn": []
},
{
"apiVersion": "2015-08-01",
"name": "[parameters('hostingPlanName')]",
"type": "Microsoft.Web/serverfarms",
"location": "[resourceGroup().location]",
"tags": {
"displayName": "HostingPlan"
},
"sku": {
"name": "[parameters('skuName')]",
"capacity": "[parameters('skuCapacity')]"
},
"properties": {
"name": "[parameters('hostingPlanName')]"
}
},
{
"apiVersion": "2015-08-01",
"name": "[variables('webSiteName')]",
"type": "Microsoft.Web/sites",
"location": "[resourceGroup().location]",
"tags": {
"[concat('hidden-related:', resourceGroup().id, '/providers/Microsoft.Web/serverfarms/', parameters('hostingPlanName'))]": "Resource",
"displayName": "Website"
},
"dependsOn": [
"[resourceId('Microsoft.Web/serverfarms/', parameters('hostingPlanName'))]",
"[variables('docDbHost')]"
],
"properties": {
"name": "[variables('webSiteName')]",
"serverFarmId": "[resourceId('Microsoft.Web/serverfarms', parameters('hostingPlanName'))]",
"siteConfig": {
"phpVersion": "off",
"appSettings": [
{
"Name": "ida:ClientId_Admin",
"Value": "[parameters('clientId_admin')]"
},
{
"Name": "ida:ClientSecret_Admin",
"Value": "[parameters('clientSecret_admin')]"
},
{
"Name": "ida:Tenant",
"Value": "[parameters('tenantName')]"
},
{
"Name": "ida:TenantId",
"Value": "[parameters('tenantId')]"
},
{
"Name": "ida:ClientId_PreAuth",
"Value": "[parameters('clientId_preAuth')]"
},
{
"Name": "ida:ClientSecret_PreAuth",
"Value": "[parameters('clientSecret_preAuth')]"
},
{
"Name": "DocDBUri",
"Value": "[reference(concat('Microsoft.DocumentDb/databaseAccounts/', variables('docDbHost'))).documentEndpoint]"
},
{
"Name": "DocDBAuthKey",
"Value": "[listKeys(resourceId('Microsoft.DocumentDb/databaseAccounts', variables('docDbHost')), '2015-04-08').primaryMasterKey]"
},
{
"Name": "DocDBName",
"Value": "[variables('docDbName')]"
},
{
"Name": "DocDBCollection",
"Value": "[variables('docDbCollection')]"
},
{
"Name": "MailEnabled",
"Value": "[variables('mailEnabled')]"
},
{
"Name": "SMTPLogin",
"Value": "[parameters('smtpLogin')]"
},
{
"Name": "SMTPPassword",
"Value": "[parameters('smptPassword')]"
},
{
"Name": "MailServer",
"Value": "[parameters('mailServerFqdn')]"
},
{
"Name": "SMTPPort",
"Value": "[parameters('smptPort')]"
}
]
}
},
"resources": [
{
"name": "web",
"type": "sourcecontrols",
"location": "[resourceGroup().location]",
"apiVersion": "2015-08-01",
"dependsOn": [
"[resourceId('Microsoft.Web/sites', variables('webSiteName'))]"
],
"tags": {
"displayName": "CodeDeploy"
},
"properties": {
"RepoUrl": "[parameters('repoUrl')]",
"branch": "[parameters('branch')]",
"IsManualIntegration": true
}
}
]
}
],
"outputs": {
"WebSiteObject": {
"value": "[reference(resourceId('Microsoft.Web/sites/', variables('webSiteName')), '2015-08-01')]",
"type": "object"
}
}
}