I need to programmatically add new application settings to azure functions without having to add it manually from the azure portal every time I introduce a new setting. Is there any nuget package or some tool which i can use to automate this?
The idea is that when we deploy from one environment to another to automate this process without having to do this manually.
Thanks in advance.
Sounds like you just want a tool to add or update app settings without manually doing via portal? I’d recommend the azure cli as a great option. Via an ARM template works too. Very often we see users using these options in combo with a tool like Azure DevOps to automate and manage multiple environments.