{ "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "resources": [ { "type": "Microsoft.Web/sites", "apiVersion": "2020-06-01", "name": "[parameters('functionAppName')]", "location": "[parameters('location')]", "kind": "functionapp,linux,elasticPremium", "properties": { "siteConfig": { "appSettings": [ { "name": "FUNCTIONS_EXTENSION_VERSION", "value": "~3" } ] } } } ], "parameters": { "functionAppName": { "type": "string", "metadata": { "description": "Name of the Azure Function App" } }, "location": { "type": "string", "metadata": { "description": "Location for all resources." } } } }