I'm trying to get my Function App Servicebus Queue Trigger to be used with the parameters for queue name and connection string fetched from App configuration Service in Azure.
My setup works for fetching and my configuration in the application context seems to get populated correctly but for some reason my Function App Servicebus queue trigger doesn't bind correctly with the name of the setting. I still get a:
The listener for function 'Functions.MessageHandler' was unable to start. Microsoft.Azure.WebJobs.Extensions.ServiceBus: Service Bus account connection string 'PartFinder:Servicebus:ConnectionString' does not exist. Make sure that it is a defined App Setting.
Error message when running my app locally. This lead me to read up a bit more around the web and I found these Links:
How to use Azure App Configuration Service with Azure Functions in local dev environment?
Isolated azure function with service bus trigger - connection string from azure app configuration
How to use Azure App Config Service with Azure Functions for binding input parameters
If I understood this correctly, this is not yet possible, So I Defaulted back to having App config references set to the correct App Configs in the App Config service in the Azure function app namespaces settings instead using this method:
App Configuration Service Referencing Syntax
But just to make sure I haven't missed anything...Does anyone know if what is claimed in the links above is relevant today? Have this issue or rather the support for App Configuration settings referencing directly to function Servicebus Queue trigger parameters been solved from Microsoft's side yet?