We are working on azure function. In dev we have consumption model, while in higher env we have premium model. I want my timeout property in host.json to come from app setting or through any means should be configurable. So that I can configure it to be 10 minutes for dev and 60 minutes for prod.
Is it possible to do this?
I tried using this FunctionTimeout : "%timout_appsetting%"
But this didn't worked.