This is less of a technical question and more of a need for guidance on architecting an automated solution in Azure but essentially I am wanting to import Word docs from an FTP site to Azure, run a PowerShell script in Azure on the imported Word docs that exports the outputs as a CSV, and then have Azure put the exported CSVs back in a folder on the original FTP site.
My current manual process is logging into the FTP, downloading the Word docs on to my local machine, running the PowerShell script against these docs that exports the output as CSV, and then I upload the CSVs back to the FTP.
Can someone please help with giving any guidance on what that process would entail in Azure?
I have seen that Azure can poll an FTP server and import files but what components of Azure I use to do the storage and running the script I am at a loss on...
Any help putting the pieces together would be greatly appreciated.