-
Notifications
You must be signed in to change notification settings - Fork 3
/
azuredeploy-functionappsettings.json
69 lines (69 loc) · 3.32 KB
/
azuredeploy-functionappsettings.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
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"appName": {
"type": "string",
"defaultValue":"DevOps-ServerlessAvailabilityTest",
"metadata": {
"description": "The name of the function app that you wish to create."
}
},
"location": {
"type": "string",
"defaultValue": "West Europe",
"metadata": {
"description": "Location for all resources."
}
},
"endpoint": {
"type": "string",
"defaultValue": "https://www.bing.com",
"metadata": {
"description": "Endpoint uri"
}
},
"functionPackage": {
"type": "string",
"defaultValue": "https://github.com/rbickel/Azure.Function.AppInsightAvailabilityTest/raw/master/webdeploy/FunctionAvailabilityTests%20-%202019051414422337.zip",
"metadata": {
"description": "The name of the function app that you wish to create."
}
}
},
"variables": {
"functionAppName": "[concat(parameters('appName'), '-app')]",
"applicationInsightsName": "[concat(parameters('appName'), '-insights')]",
"storageAccountName": "[concat(uniquestring(resourceGroup().id), 'azfunctions')]",
"storageAccountid": "[concat(resourceGroup().id,'/providers/','Microsoft.Storage/storageAccounts/', variables('storageAccountName'))]",
"functionWorkerRuntime": "dotnet",
"runFromZIP": "[parameters('functionPackage')]"
},
"resources": [
{
"apiVersion": "2015-08-01",
"name": "[concat(variables('functionAppName'), '/appsettings')]",
"type": "Microsoft.Web/sites/config",
"properties": {
"AzureWebJobsDashboard": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storageAccountName'), ';AccountKey=', listKeys(variables('storageAccountid'),'2015-05-01-preview').key1)]",
"AzureWebJobsStorage": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storageAccountName'), ';AccountKey=', listKeys(variables('storageAccountid'),'2015-05-01-preview').key1)]",
"FUNCTIONS_WORKER_RUNTIME":"[variables('functionWorkerRuntime')]",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"WEBSITE_CONTENTSHARE":"[toLower(variables('functionAppName'))]",
"AzureWebJobsSecretStorageType":"files",
"APPINSIGHTS_INSTRUMENTATIONKEY":"[reference(resourceId('microsoft.insights/components/', variables('applicationInsightsName')), '2015-05-01').InstrumentationKey]",
"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storageAccountName'), ';AccountKey=', listKeys(variables('storageAccountid'),'2015-05-01-preview').key1)]",
"WEBSITE_RUN_FROM_ZIP": "[variables('runFromZIP')]",
"AppInsights:instrumentationKey":"[reference(resourceId('microsoft.insights/components/', variables('applicationInsightsName')), '2015-05-01').InstrumentationKey]",
"AppInsights:region":"[parameters('location')]",
"Endpoint":"[parameters('endpoint')]"
}
}
],
"outputs": {
"PingUri":{
"type":"string",
"value":"[listsecrets(resourceId('Microsoft.Web/sites/functions', variables('functionAppName'), 'Ping'),'2015-08-01').trigger_url]"
}
}
}