I want to compare the Application settings of two differents function app. I have one function app for the development and an other for the production and I want to check if I don't forget to add one setting on production.
I started with the Azure CLI and did :
az functionapp config appsettings list
which returns the list of the application settings.
Now how can I compare the names of the settings (not the value which will be different) of the two function apps ? It is possible to store them in a two differents output table
and compare the name
column ?