I need to put together a logic app. The trigger in that if/when a new file comes to a blob storage the new file will be moved to a new location say 'XYZ'.
The way the file will move to new location XYZ is, the logic app in actions will connect to virtual machine which will run azcopy tool and pick file from the blob storage and put it in the new location XYZ
And I am new to logic apps connecting to Virtual machines and somehow trigger azcopy command within a virtual machine when the logic app runs.
Blob storage, virtual machine and logic apps are all in the same resource group, same subscription.
Would really appreciate some pointers.
- I heard that I need to create a ISE in order for the logic app to work with virtual machine but I am not sure if I really need this. This is the article that I saw. https://learn.microsoft.com/en-us/azure/logic-apps/connect-virtual-network-vnet-isolated-environment
Is that the only way? 2) How would I run AZCopy command within a virtual machine from logic app?
Thanks so much for your help.