Thanks for reaching out to Q&A forum.
Yes. You can set the expression in an app setting and refer to it using %
signs. For instance, if you have a setting called CRON_EXPRESSION
:
@FunctionName("Refresh-Data-Daily-Services")public void dailyServices( @TimerTrigger( name = "timerInfo", schedule = "%CRON_EXPRESSION%" ) String timerInfo, final ExecutionContext context)
Reference : https://github.com/Azure/azure-functions-host/issues/1934
Hope this helps! Feel free to reach out to me if you have any queries or concerns.
Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.