Balu
Balu

Reputation: 564

AzureWebJobsStorage and AzureWebJobsSecretStorageType Settings

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

Upvotes: 22

Views: 31729

Answers (1)

Gaurav Mantri
Gaurav Mantri

Reputation: 136246

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.

Upvotes: 19

Related Questions