Reputation: 1
The project I have been assigned has a requirement of transferring data from an Azure Blob Container to a FTP location (Veeva Vault to be precise). I tried the following approaches:
The constraint here is that every thing should be on Azure itself and should be automated. The second approach I have followed seems to be a wastage of resources and has many factors which can lead to failure of the migration. (I am new to Azure platform)
Also the FTP server is secured.
Is there any better approach to transfer the data from Azure container to the FTP server?
Upvotes: 0
Views: 1583
Reputation: 18387
You can use Azure Logic App and the Blob Storage and SFTP connectors:
https://learn.microsoft.com/en-us/azure/connectors/connectors-create-api-azureblobstorage
https://learn.microsoft.com/en-us/azure/connectors/connectors-create-api-sftp
PS: You can either use Blob Trigger as the starting point for your workflow and also schedule to batch the transfer according to some interval you define
Upvotes: 1