I have an Azure Function (App Service) that I deploy to Azure using an ARM template.
I have modified the host.json file for my App Service to extend the default timeout of the function as below:
{
"functionTimeout": "00:10:00"
}
How can I include this change in my ARM Template so the updated host.json file is automatically deployed to Azure?
Right now, I deploy the ARM template and have to manually update the host.json file