"dvc add -external S3://mybucket/data.csv" is failing with access error even after giving correct remote cache configurations

Hi @jorgeorpinel ,

Its the same error I get even if I pass full dataset path.
I’m passing the data path along with bucket name like below. Its still the same issue/error.

  • dvc add -v --external s3://dataset/wine-quality.csv
    Does the above command also use locally configured AWS S3 configuration and not DVC remote configurations.

config,
[core]
remote = s3remote
[cache]
s3 = s3cache
[‘remote “s3remote”’]
url = S3://dataset
endpointurl = http://{XYZ}:9000/
access_key_id = user
secret_access_key = password
use_ssl = false
[‘remote “s3cache”’]
url = s3://dataset/cache/
endpointurl = http://{XYZ}:9000/
access_key_id = user
secret_access_key = password
use_ssl = false

This is my Minio bucket structure I have,

PS: I’m using remote hosted Minio server to connect.