What is the standard structure to add keys to appsettings.json
?
Also, how to read those values in our run.csx
?
Normally in app.config, we had Con
Appsettings are not managed by the function itself, but by its Function App. So, if you use the cli, is something along...
az functionapp appsettings set .....
That's how I do it in my CI/CD pipeline. After that, you can use them in your functions. Remember that a function MUST live within a Function App, so it makes total sense to place all those values there so that you have them available in every function.