Search code examples
azureazure-storageazure-functions

AzureWebJobsStorage and AzureWebJobsSecretStorageType Settings


What is use of azure functions AzureWebJobsStorage and AzureWebJobsSecretStorageType settings in azure functions?


Solution

  • From the official documentation:

    AzureWebJobsSecretStorageType

    Specifies the repository or provider to use for key storage. Currently, the supported repositories are blob storage ("Blob") and the local file system ("Files"). The default is blob in version 2 and file system in version 1.

    AzureWebJobsStorage

    The Azure Functions runtime uses this storage account connection string for all functions except for HTTP triggered functions. The storage account must be a general-purpose one that supports blobs, queues, and tables.