Azure Functions: There was an error performing a read operation on the Blob Storage Secret Repository
May 27
In testing Azure Functions locally, I am receiving this error:
"There was an error performing a read operation on the Blob Storage Secret Repository. Please ensure the 'AzureWebJobsStorage' connection string is valid."
I have Azure Blob Storage setup, including Storage Emulator and Storage Explorer. How can this be fixed?
1 answer
Accepted answer · original discussion
May 31
I had this issue with Azure Durable Functions, I found the way to resolve it here: https://github.com/Azure/azure-functions-host/issues/3795#issuecomment-430337085
In local.settings.json, add a new setting called AzureWebJobsSecretStorageType and set it to "files".
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
"FUNCTIONS_WORKER_RUNTIME": "dotnet",
"AzureWebJobsSecretStorageType": "files"
}
}
Your perspective belongs here.
Sign in with a verified account to contribute.
0 question comments
Use comments to ask for clarification. Post a solution as an answer.
No question comments on this page.