2
votes

I have created an Azure Function App on Azure's consumption plan. Being on a consumption plan, the configuration setting WEBSITE_CONTENTSHARE is required. However, it looks like someone has deleted this value. (It is typically of the form "my-function-name-suffix", where "suffix" is some string value).

How do I find the actual share location in Azure, in order that I might restore this value to the configuration settings?

1
Try browsing to your Azure Files. There should be shared folders and you can see which of those relevant to your site. If you are curious, the suffix was generated using hash(sitename, slot).Suwat Ch
Hi, if my answer helps you, can you mark it as the answer of the question?:) Link about how to mark answerCindy Pau

1 Answers

3
votes

If you delete your WEBSITE_CONTENTSHARE config value like this:

enter image description here

Then you can go here to get the value:

  1. Go to the storage your function linked to.

enter image description here

  1. And you can find what you want:(My function name is 'openapifunctionbowman')

enter image description here