Azure function error : Missing value for AzureWebJobsStorage in local.settings.json



You might get a detail error message  as follows :-

Missing value for AzureWebJobsStorage in local.settings.json. This is required for all triggers other than httptrigger, kafkatrigger. You can run 'func azure functionapp fetch-app-settings ' or specify a connection string in local.settings.json.


The fix, just add this in to your local.settings,json

{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
"AzureWebJobsDashboard": "UseDevelopmentStorage=true"
}
}



Comments

Popular posts from this blog

The specified initialization vector (IV) does not match the block size for this algorithm