100 Days of MLOps - day 13

I am not successfully completing this task even though I fixed the .dvc/config file for the dvc pull, the check says it does not see the access_key under remote ‘s3’.

See screenshot

My config file looked like this:

[core]
    remote = s3

['remote "s3"']
    url = s3://dvc-storage
    endpointurl = http://localhost:8333
    access_key_id = weedadmin
    secret_access_key = weedadmin123

Note that the section key is single quoted. This is how it is in the docs, and if you set the params using the command “dvc remote add”, you’ll find that it creates a section with this format and puts your configuration under it. This is probably what is upsetting the grader.

Thank you @rob_kodekloud . I had removed the single quotes believing I needed only the “s3” in quotations