arm-artifacts/shared-templates/functions-app.json
{ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "functionsAppName": { "type": "string", "minLength": 1 }, "corsAllowedOrigins": { "type": "array", "defaultValue": [] }, "storageAccountType": { "type": "string", "defaultValue": "Standard_LRS", "allowedValues": [ "Standard_LRS", "Standard_GRS", "Standard_RAGRS" ], "metadata": { "description": "Storage Account type" } }, "_artifactsLocation": { "type": "string" }, "_artifactsLocationSasToken": { "type": "securestring" } }, "variables": { "storageAccountName": "[substring(concat(parameters('functionsAppName'), 'func', uniqueString(resourceGroup().id)), 0, 24)]", "hostingPlanName": "[parameters('functionsAppName')]", "storageAccountid": "[concat(resourceGroup().id,'/providers/','Microsoft.Storage/storageAccounts/', variables('storageAccountName'))]", "storageApiVersion": "2015-05-01-preview" }, "resources": [ { "type": "Microsoft.Storage/storageAccounts", "name": "[variables('storageAccountName')]", "apiVersion": "[variables('storageApiVersion')]", "location": "[resourceGroup().location]", "properties": { "accountType": "[parameters('storageAccountType')]" } }, { "type": "Microsoft.Web/serverfarms", "apiVersion": "2015-04-01", "name": "[variables('hostingPlanName')]", "location": "[resourceGroup().location]", "properties": { "name": "[variables('hostingPlanName')]", "computeMode": "Dynamic", "sku": "Dynamic" } }, { "type": "Microsoft.Web/sites", "kind": "functionapp", "name": "[parameters('functionsAppName')]", "apiVersion": "2016-03-01", "location": "[resourceGroup().location]", "identity": { "type": "SystemAssigned" }, "properties": { "siteConfig": { "cors": { "allowedOrigins": "[parameters('corsAllowedOrigins')]" }, "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('hostingPlanName'))]", "appSettings": [ { "name": "AzureWebJobsDashboard", "value": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storageAccountName'), ';AccountKey=', listKeys(variables('storageAccountid'),variables('storageApiVersion')).key1)]" }, { "name": "AzureWebJobsStorage", "value": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storageAccountName'), ';AccountKey=', listKeys(variables('storageAccountid'),variables('storageApiVersion')).key1)]" }, { "name": "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING", "value": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storageAccountName'), ';AccountKey=', listKeys(variables('storageAccountid'),variables('storageApiVersion')).key1)]" }, { "name": "WEBSITE_CONTENTSHARE", "value": "[toLower(parameters('functionsAppName'))]" } ] } }, "dependsOn": [ "[resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName'))]" ] } ], "outputs": { "storageAccountConnectionString": { "type": "string", "value": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storageAccountName'), ';AccountKey=', listKeys(variables('storageAccountid'),variables('storageApiVersion')).key1)]" }, "servicePrincipalId": { "type": "string", "value": "[reference(concat(resourceId('Microsoft.Web/sites', parameters('functionsAppName')), '/providers/Microsoft.ManagedIdentity/Identities/default'), '2018-11-30').principalId]" } } } |