Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

S3 access_key_id & secret_access_key args #1589

Merged
merged 10 commits into from
Jul 20, 2020
16 changes: 15 additions & 1 deletion content/docs/command-reference/remote/modify.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,21 @@ these settings, you could use the following options:
$ dvc remote modify myremote endpointurl https://myendpoint.com
```

- `url` - remote location URL
- `access_key_id` - AWS Access Key ID. May be used (along with
`secret_access_key`) instead of `credentialpath`:

```dvc
$ dvc remote modify myremote access_key_id my-access-key-id
```

- `secret_access_key` - AWS Secret Access Key. May be used (along
with `access_key_id`) instead of `credentialpath`:

```dvc
$ dvc remote modify myremote secret_access_key my-secret_access_key
```

- `url` - remote location URL:

```dvc
$ dvc remote modify myremote url s3://bucket/remote
Expand Down