An Azure service that provides an event-driven serverless compute platform.
Xiuyang Bobby Sun Thanks for posting your question in Microsoft Q&A. Quickly reviewing the template https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Fortinet%20FortiNDR%20Cloud/Data%20Connectors/azuredeploy_FortinetFortiNdrCloud_API_FunctionApp.json#L101-L116, found that reserved is missing in Microsoft.Web/serverfarms template which is needed for Linux app service plan and after modifying the template as below (in your original template), works well (tested in my test sub).
{
"type": "Microsoft.Web/serverfarms",
"apiVersion": "2018-02-01",
"name": "[variables('FunctionName')]",
"location": "[resourceGroup().location]",
"sku": {
"name": "Y1",
"tier": "Dynamic"
},
"kind": "functionapp",
"properties": {
"name": "[variables('FunctionName')]",
"workerSize": "0",
"workerSizeId": "0",
"numberOfWorkers": "1",
"reserved": true
}
}
Checkout AppServicePlanProperties for more info about this template and properties.
I hope this helps and let me know if any questions.
If you found the answer to your question helpful, please take a moment to mark it as Yes for others to benefit from your experience. Or simply add a comment tagging me and would be happy to answer your questions.