I want to trigger a HTTP Azure Function to automate some Azure related tasks using the CLI.
I assumed the Azure CLI would automatically be included with a Powershell function, though it appears that I'm wrong, since trying to invoke the 'az' command produces the typical...
ERROR: The term 'az' is not recognized as the name of a cmdlet, function, script file, or operable program.
Please explain to me how I'd use Azure CLI inside my Azure Powershell Function, thanks.
Edit: I was able to achieve what I wanted by using the Azure SDK in a C# Function, consider investigating this when wanting to do some automation in Azure, as I was thinking about this the wrong way and using the SDK makes much more sense than what I originally had in my head!