https://github.com/epomatti/az-datalake
Azure Data Lake Gen2 with azcopy
https://github.com/epomatti/az-datalake
adlsgen2 azure azure-data-lake terraform
Last synced: 3 months ago
JSON representation
Azure Data Lake Gen2 with azcopy
- Host: GitHub
- URL: https://github.com/epomatti/az-datalake
- Owner: epomatti
- License: mit
- Created: 2023-05-20T01:16:34.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-20T01:53:54.000Z (about 2 years ago)
- Last Synced: 2025-01-17T18:36:49.433Z (4 months ago)
- Topics: adlsgen2, azure, azure-data-lake, terraform
- Language: HCL
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Azure Data Lake Gen2
Create the infrastructure:
```sh
terraform init
terraform apply -auto-approve
```Download and install azcopy tool ([v10 link](https://aka.ms/downloadazcopy-v10-linux)).
```sh
curl -L https://aka.ms/downloadazcopy-v10-linux -o azcopylinux10.tar.gz
tar -xf azcopylinux10.tar.gz
```Execute the copy:
```sh
azcopy login --tenant-id=./azcopy cp "./files/*" "https://dlsmydatalake789.dfs.core.windows.net/myfilesystem001" --recursive=true
```