camous
camous

Reputation: 1000

Dedicated settings for Azure web jobs

I have a bunch of azure Web jobs on one App Service hosted on one App Service plan.

Each web jobs have their own role & function & settings.

enter image description here

Settings can only be defined (or overridden) at App Service level.

Does it mean

Upvotes: 0

Views: 85

Answers (1)

David Ebbo
David Ebbo

Reputation: 43183

If by 'settings' you are referring to Azure Web App settings, then indeed they are shared among all WebJobs within an App Service.

If you need them to be different, you can simply host each WebJob in a different Web App. Both Web Apps can be in the same App Service Plan, so this won't cost you anything more.

Upvotes: 2

Related Questions