Day 13: Pull DVC-Tracked Data from Remote

(topic deleted by author)

I have been on Day 13: Pull DVC-Tracked Data from Remote for a while now. I keep having this

“access_key_id is not set on the s3 remote in .dvc/config.” problem and I must admit I don’t know what I’m doing wrong. Here is the output of my terminal: `root@controlplane ~/code :heavy_multiplication_x: cd fraud-detection/

root@controlplane fraud-detection on  main ➜ cat > .dvc/config << ‘EOF’
[core]
remote = s3
[remote “s3”]
url = s3://dvc-storage
endpointurl = http://localhost:8333
access_key_id = weedadmin
secret_access_key = weedadmin123
EOF

root@controlplane fraud-detection on  main [!] ➜ dvc config remote.s3.access_key_id
weedadmin

root@controlplane fraud-detection on  main [!] ➜ dvc pull
Collecting |1.00 [00:00, 783entry/s]
Fetching
Building workspace index |2.00 [00:00, 749entry/s]
Comparing indexes |4.00 [00:00, 3.01kentry/s]
Applying changes |1.00 [00:00, 1.24kfile/s]
A data/raw/transactions.csv
1 file fetched and 1 file added

root@controlplane fraud-detection on  main [!] ➜ dvc pull 2>&1
Collecting |0.00 [00:00, ?entry/s]
Fetching
Building workspace index |3.00 [00:00, 1.94kentry/s]
Comparing indexes |4.00 [00:00, 3.08kentry/s]
Applying changes |0.00 [00:00, ?file/s]
Everything is up to date.

root@controlplane fraud-detection on  main [!] ➜ md5sum data/raw/transactions.csv
555f037ee350464f52122d087f28e857 data/raw/transactions.csv

root@controlplane fraud-detection on  main [!] ➜ dvc config remote.s3.secret_key_id

root@controlplane fraud-detection on  main [!] ➜ dvc config remote.s3.secret_access_key
weedadmin123

`
And even with
cd /root/code/fraud-detection/

dvc remote modify s3 access_key_id weedadmin
dvc remote modify s3 secret_access_key weedadmin123

dvc pull.

I keep having this access_key_id is not set on the s3 remote in .dvc/config. And I can’t move on.
Just need some insights.
Thanks!