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
14 changes: 14 additions & 0 deletions content/docs/command-reference/remote/modify.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,20 @@ these settings, you could use the following options:
$ dvc remote modify myremote endpointurl https://myendpoint.com
```

- `access_key_id` - AWS Access Key ID. Optional, overrides credentials from
`credentialpath`:

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

- `secret_access_key` - AWS Secret Access Key. Optional, Overrides credentials
jorgeorpinel marked this conversation as resolved.
Show resolved Hide resolved
from `credentialpath`:

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

- `url` - remote location URL
jorgeorpinel marked this conversation as resolved.
Show resolved Hide resolved

```dvc
Expand Down