I am creating an ARM template to deploy a handful of apps, databases and storage accounts. I am able to create a new SQL Database from a .bacpac file that sits in a storage account, and that allows me to populate data into the db on deployment. I was wondering if there is something similar for Storage Accounts. Say I want to create a new instance of an environment, but I want to load it with Storage Account Data from Production. Currently, I have a PowerShell script that gets the name and key for the source and destination storage account, and I then call AZCopy to move the data that way. Is there a preferred approach to doing this task using ARM? Is there anything in the Pipeline to allow importing data from an existing Storage Account?