We'd like to be able to promote this command tool to Azure.
Ideally, we'd have an Http-triggered function that accepts a body such as:
{ "document-location":"...", "filename":"myEncryptedPdf.pdf", "destination-location":"..."}
And it will then decrypt the file and move it to the intended destination.
Is it possible to run a command-line utility within an Azure Function?
Perhaps, the simplest example would be, if I had some tool.bat
:
echo Hello world
I'd like to be able to run this inside of an Azure Function.