Ask Your Question
4

What is the solution for the missing value of AzureWebJobsStorage when developing locally in Visual Studio 2017 with local.settings.json file?

asked 2021-08-24 11:00:00 +0000

djk gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
0

answered 2023-02-18 12:00:00 +0000

plato gravatar image

The missing value for AzureWebJobsStorage can be solved by providing a connection string for a local development storage emulator or a Azure Storage account.

  1. For local storage emulator connection string, install and run the Azure Storage Emulator from the Azure Storage SDK. Then, use the following connection string in your local.settings.json file:

"AzureWebJobsStorage": "UseDevelopmentStorage=true"

  1. For Azure Storage account connection string, go to the Azure portal, create a Storage account, and get the connection string from the Access keys tab. Use the following format in your local.settings.json file:

"AzureWebJobsStorage": "DefaultEndpointsProtocol=https;AccountN…"

Make sure to replace yourAccountName and yourAccountKey with your actual Azure Storage account information.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-08-24 11:00:00 +0000

Seen: 18 times

Last updated: Feb 18 '23