Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is use of azure functions AzureWebJobsStorage and AzureWebJobsSecretStorageType settings

Can you please help me to understand what is use of azure functions AzureWebJobsStorage and AzureWebJobsSecretStorageType settings.

I am new to Azure , So please say answer through an example .

like image 895
Balu Avatar asked Oct 12 '17 10:10

Balu


1 Answers

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.

like image 155
Gaurav Mantri Avatar answered Sep 30 '22 17:09

Gaurav Mantri