skip to Main Content

Azure Durable Function Return a Don't know how to bind to String. (Parameter 'value') Error in portal

Little bit new to azure durable function. I am trying out fanout/fanin Concept within the azure function. [FunctionName("MasterListUpdate")] public async Task<List<Task<string>>> RunOrchestrator( [OrchestrationTrigger] IDurableOrchestrationContext context) { var outputs = new List<Task<string>>(); var datalist = context.GetInput<List<string>>(); foreach (var state in StateList.States)…

VIEW QUESTION

MSINotEnabled – Can't use KeyVault Reference in Azure Function

I'm trying to use a User Assign Managed Identity to retrieve access in KeyVault reference in Azure Function. I'm following this doc https://learn.microsoft.com/en-us/azure/app-service/app-service-key-vault-references?tabs=azure-cli#:~:text=you%20haven%27t%20already.-,Configure,-the%20app%20to to reference the keyvault in the application configuration. I followed these steps: Created User Assign Managed Identity.…

VIEW QUESTION
Back To Top
Search