From 2d9dc4f85708b472a398642c7e992b771146400d Mon Sep 17 00:00:00 2001 From: Fariz Rahman Date: Sat, 18 Jul 2020 10:09:56 +0400 Subject: [PATCH 01/10] S3 access_key_id & secret_access_key args https://github.com/iterative/dvc/pull/4224 --- content/docs/command-reference/remote/modify.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/content/docs/command-reference/remote/modify.md b/content/docs/command-reference/remote/modify.md index 95926a121e..c6cbc5c64c 100644 --- a/content/docs/command-reference/remote/modify.md +++ b/content/docs/command-reference/remote/modify.md @@ -108,6 +108,18 @@ these settings, you could use the following options: $ dvc remote modify myremote endpointurl https://myendpoint.com ``` +- `access_key_id` - AWS access key id to use to access S3: + + ```dvc + $ dvc remote modify myremote access_key_id my-access-key-id + ``` + +- `secret_access_key` - AWS secret access key to use to access S3: + + ```dvc + $ dvc remote modify myremote secret_access_key my-secret_access_key + ``` + - `url` - remote location URL ```dvc From e0bc286a7790d256c09ff25a31e3864467507b83 Mon Sep 17 00:00:00 2001 From: Jorge Orpinel Date: Sat, 18 Jul 2020 11:02:35 -0500 Subject: [PATCH 02/10] Update content/docs/command-reference/remote/modify.md --- content/docs/command-reference/remote/modify.md | 1 - 1 file changed, 1 deletion(-) diff --git a/content/docs/command-reference/remote/modify.md b/content/docs/command-reference/remote/modify.md index c6cbc5c64c..b67dab8e21 100644 --- a/content/docs/command-reference/remote/modify.md +++ b/content/docs/command-reference/remote/modify.md @@ -119,7 +119,6 @@ these settings, you could use the following options: ```dvc $ dvc remote modify myremote secret_access_key my-secret_access_key ``` - - `url` - remote location URL ```dvc From 270010c8e912b393a02df86d23f9a1fb8258db4a Mon Sep 17 00:00:00 2001 From: Fariz Rahman Date: Sun, 19 Jul 2020 12:53:19 +0400 Subject: [PATCH 03/10] Update content/docs/command-reference/remote/modify.md Co-authored-by: Jorge Orpinel --- content/docs/command-reference/remote/modify.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/command-reference/remote/modify.md b/content/docs/command-reference/remote/modify.md index b67dab8e21..7b6dd36390 100644 --- a/content/docs/command-reference/remote/modify.md +++ b/content/docs/command-reference/remote/modify.md @@ -108,7 +108,7 @@ these settings, you could use the following options: $ dvc remote modify myremote endpointurl https://myendpoint.com ``` -- `access_key_id` - AWS access key id to use to access S3: +- `access_key_id` - AWS Access Key ID: ```dvc $ dvc remote modify myremote access_key_id my-access-key-id From 747f71220b2626b34d6edd2ec1a3659f5fe9ea9b Mon Sep 17 00:00:00 2001 From: Fariz Rahman Date: Sun, 19 Jul 2020 12:53:32 +0400 Subject: [PATCH 04/10] Update content/docs/command-reference/remote/modify.md Co-authored-by: Jorge Orpinel --- content/docs/command-reference/remote/modify.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/command-reference/remote/modify.md b/content/docs/command-reference/remote/modify.md index 7b6dd36390..f6098490bb 100644 --- a/content/docs/command-reference/remote/modify.md +++ b/content/docs/command-reference/remote/modify.md @@ -114,7 +114,7 @@ these settings, you could use the following options: $ dvc remote modify myremote access_key_id my-access-key-id ``` -- `secret_access_key` - AWS secret access key to use to access S3: +- `secret_access_key` - AWS Secret Access Key: ```dvc $ dvc remote modify myremote secret_access_key my-secret_access_key From 9af97ca7045325896f61564732f01b8b044eb2d3 Mon Sep 17 00:00:00 2001 From: Fariz Rahman Date: Sun, 19 Jul 2020 12:56:01 +0400 Subject: [PATCH 05/10] ws fix --- content/docs/command-reference/remote/modify.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/docs/command-reference/remote/modify.md b/content/docs/command-reference/remote/modify.md index f6098490bb..33036ed35e 100644 --- a/content/docs/command-reference/remote/modify.md +++ b/content/docs/command-reference/remote/modify.md @@ -119,6 +119,7 @@ these settings, you could use the following options: ```dvc $ dvc remote modify myremote secret_access_key my-secret_access_key ``` + - `url` - remote location URL ```dvc From 1b7e27976f685b75732c02639f5e21c273bef126 Mon Sep 17 00:00:00 2001 From: Fariz Rahman Date: Sun, 19 Jul 2020 13:05:20 +0400 Subject: [PATCH 06/10] better explanation --- content/docs/command-reference/remote/modify.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/command-reference/remote/modify.md b/content/docs/command-reference/remote/modify.md index 33036ed35e..1a5bcbb594 100644 --- a/content/docs/command-reference/remote/modify.md +++ b/content/docs/command-reference/remote/modify.md @@ -108,13 +108,13 @@ these settings, you could use the following options: $ dvc remote modify myremote endpointurl https://myendpoint.com ``` -- `access_key_id` - AWS Access Key ID: +- `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: +- `secret_access_key` - AWS Secret Access Key. Optional, Overrides credentials from `credentialpath`: ```dvc $ dvc remote modify myremote secret_access_key my-secret_access_key From 0dfe154b3ae8d9451c66a84933ab7d617fc73c84 Mon Sep 17 00:00:00 2001 From: Fariz Rahman Date: Sun, 19 Jul 2020 13:10:36 +0400 Subject: [PATCH 07/10] ws fix --- content/docs/command-reference/remote/modify.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/content/docs/command-reference/remote/modify.md b/content/docs/command-reference/remote/modify.md index 1a5bcbb594..52a208be72 100644 --- a/content/docs/command-reference/remote/modify.md +++ b/content/docs/command-reference/remote/modify.md @@ -108,13 +108,15 @@ 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`: +- `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 from `credentialpath`: +- `secret_access_key` - AWS Secret Access Key. Optional, Overrides credentials + from `credentialpath`: ```dvc $ dvc remote modify myremote secret_access_key my-secret_access_key From 56611c61a29174b36021664dedf203503a517dfc Mon Sep 17 00:00:00 2001 From: Jorge Orpinel Date: Sun, 19 Jul 2020 14:04:55 -0500 Subject: [PATCH 08/10] Update content/docs/command-reference/remote/modify.md --- content/docs/command-reference/remote/modify.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/command-reference/remote/modify.md b/content/docs/command-reference/remote/modify.md index 52a208be72..99c91ea382 100644 --- a/content/docs/command-reference/remote/modify.md +++ b/content/docs/command-reference/remote/modify.md @@ -108,14 +108,14 @@ 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 +- `access_key_id` - (optional) AWS Access Key ID. 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 +- `secret_access_key` - (optional) AWS Secret Access Key. Overrides credentials from `credentialpath`: ```dvc From 3d5fc40c94b546e6640411c9dc87dfd81ac62abb Mon Sep 17 00:00:00 2001 From: Jorge Orpinel Date: Sun, 19 Jul 2020 19:49:09 -0500 Subject: [PATCH 09/10] Update content/docs/command-reference/remote/modify.md --- content/docs/command-reference/remote/modify.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/command-reference/remote/modify.md b/content/docs/command-reference/remote/modify.md index 99c91ea382..9d18bd4027 100644 --- a/content/docs/command-reference/remote/modify.md +++ b/content/docs/command-reference/remote/modify.md @@ -122,7 +122,7 @@ these settings, you could use the following options: $ dvc remote modify myremote secret_access_key my-secret_access_key ``` -- `url` - remote location URL +- `url` - remote location URL: ```dvc $ dvc remote modify myremote url s3://bucket/remote From bdc961d26d4a7a0bbbd1395a921161ce110f051d Mon Sep 17 00:00:00 2001 From: Jorge Orpinel Date: Mon, 20 Jul 2020 02:08:03 -0500 Subject: [PATCH 10/10] Update content/docs/command-reference/remote/modify.md --- content/docs/command-reference/remote/modify.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/docs/command-reference/remote/modify.md b/content/docs/command-reference/remote/modify.md index 9d18bd4027..6f80855680 100644 --- a/content/docs/command-reference/remote/modify.md +++ b/content/docs/command-reference/remote/modify.md @@ -108,15 +108,15 @@ these settings, you could use the following options: $ dvc remote modify myremote endpointurl https://myendpoint.com ``` -- `access_key_id` - (optional) AWS Access Key ID. Overrides credentials from - `credentialpath`: +- `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` - (optional) AWS Secret Access Key. Overrides credentials - from `credentialpath`: +- `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