Neo
Neo

Reputation: 16219

Have parameter in Function settings still getting Not found issue at Azure Function

I have deployed one azure function but getting below error -

The function runtime is unable to start. Microsoft.Azure.ServiceBus: Value for the connection string parameter name '$(MyDemoConnectionString)' was not found

When I checked into setting using portal. I have this MyDemoConnectionString there with value still getting the above error.

I tried to restart and even delete and re-deploy still the same issue. any clue?

see below screenshot connectionstring is taken from keyvault and checked it is present and even here in settings Key vault Reference is green.

enter image description here

Upvotes: 0

Views: 535

Answers (1)

Sajeetharan
Sajeetharan

Reputation: 222582

Please note that your app should have access you can setup using Managed Service Identity

You can read from Use Key Vault references for App Service and Azure Functions

Upvotes: 1

Related Questions