An open API service indexing awesome lists of open source software.

https://github.com/jefking/copyblobs

Copies all files in a container to another container, in another storage account.
https://github.com/jefking/copyblobs

aci arm azcopy azure blob container copy data file files from instant move one-time simple storage sync template to transfer

Last synced: 7 months ago
JSON representation

Copies all files in a container to another container, in another storage account.

Awesome Lists containing this project

README

          

# Azure Storage Copy
Copies all files in a container to another Storage Account container.

1. Stands up ACI
2. Runs AZCopy
3. Transfers Blobs
- Utilizes bandwidth in the data center
- Ensure the best possible transfer rate.

# Tools
[Azure CLI](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest)

# Commands
## 1. Create/Choose Resource Group
Choose the region nearest to the data; this is where ACI will be brought up.

``
az group create -g --location "West US 2"
``

Deployment file
- Stands up ACI (in the region of the Resource Group)
- Intiates copy of data

## 2. Deploy
``
az group deployment create --name sync --resource-group --template-file transfer.json --parameters source=SOURCE soruceKey=KEY destination=DESTINATION destinationKey=KEY
``

OR (Edit parameter.json)

``
az group deployment create --name sync --resource-group --template-file transfer.json --parameters parameters.json
``