May 2019
Beginner to intermediate
456 pages
10h 37m
English
Notice the resources section. The first resource is the app service plan. We are setting computeMode as Dynamic, this ensures we are using the consumption plan. The second resource creates an Azure Function app resource.
"resources": [ { "type": "Microsoft.Web/serverfarms", "apiVersion": "2015-04-01", "name": "[variables('appAppServicePlanName')]", "location": "[resourceGroup().location]", "properties": { "name": "[variables('appAppServicePlanName')]", ...Read now
Unlock full access