Skip to content

Commit

Permalink
Merge pull request #1603 from iterative/restyled/pull-1589
Browse files Browse the repository at this point in the history
Restyle S3 access_key_id & secret_access_key args
  • Loading branch information
jorgeorpinel authored Jul 20, 2020
2 parents d1bd6e3 + 281076a commit fe6ae59
Showing 1 changed file with 15 additions and 1 deletion.
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

0 comments on commit fe6ae59

Please sign in to comment.