Reputation: 1000
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.
Settings can only be defined (or overridden) at App Service
level.
Does it mean
web jobs
?Upvotes: 0
Views: 85
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