I am currently reading the Schedule parameter for my Azure Function Timer Trigger from local.settings.json. However, I would like to read it from Azure App Configuration instead. The problem is that since the configuration is connected after the project has started, I am unable to read it from there. Can anyone suggest a solution?
In my Azure Functions project, I have already set up Azure App Configuration and have the necessary connection details. I want to retrieve the Schedule parameter dynamically from Azure App Configuration so that any changes to the Schedule in the configuration are reflected without restarting the Azure Function.
By the way, I don't have any issues reading a key from IConfiguration within any function.
Any help or suggestions would be greatly appreciated. Thank you!