-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebapp-config.json
52 lines (52 loc) · 1.64 KB
/
Webapp-config.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
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"sites_MCSC_ClientApi_name": {
"type": "string",
"defaultValue": "mcsc-clientapi-dev"
},
"DOC_DB": {
"type": "string"
},
"APP_INSIGHTS_KEY": {
"type": "string"
},
"AUTH_KEY": {
"type": "string"
}
},
"variables": {},
"resources": [
{
"type": "Microsoft.Web/Sites",
"apiVersion": "2015-08-01",
"name": "[parameters('sites_MCSC_ClientApi_name')]",
"location": "[resourceGroup().location]",
"properties": {
"name": "[parameters('sites_MCSC_ClientApi_name')]",
"siteConfig": {
"phpVersion": "off",
"appSettings": [
{
"Name": "DOC_DB",
"Value": "[parameters('DOC_DB')]"
},
{
"Name": "AUTH_KEY",
"Value": "[parameters('AUTH_KEY')]"
},
{
"Name": "APP_INSIGHTS_KEY",
"Value": "[parameters('APP_INSIGHTS_KEY')]"
},
{
"Name": "WEBSITE_NODE_DEFAULT_VERSION",
"Value": "4.4.7"
}
]
}
}
}
]
}