From a2711eb14d04899524cb3838609742023aa360a9 Mon Sep 17 00:00:00 2001 From: Jack Wells Date: Mon, 11 May 2020 13:47:30 -0700 Subject: [PATCH] Add documentation for remote s3 sse_kms_key_id parameter (#1280) * Documenting sse_kms_key_id remote S3 parameter. * Grammatical tweak. * dvc remote modify: minor term fix Co-authored-by: Ivan Shcheklein --- content/docs/command-reference/remote/modify.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/content/docs/command-reference/remote/modify.md b/content/docs/command-reference/remote/modify.md index 556a0bf947..50e184f7fc 100644 --- a/content/docs/command-reference/remote/modify.md +++ b/content/docs/command-reference/remote/modify.md @@ -138,6 +138,15 @@ these settings, you could use the following options: $ dvc remote modify myremote sse AES256 ``` +- `sse_kms_key_id` - SSE-KMS key to use to encrypt data uploaded to S3, normally + specified when the `sse` parameter is set to `aws:kms`. This parameter will be + passed directly to AWS's S3 functions, so DVC supports any value that AWS + supports, including both KMS key ids and aliases. + + ```dvc + $ dvc remote modify myremote sse_kms_key_id alias/testkey + ``` + - `acl` - set object level access control list (ACL) such as `private`, `public-read`, etc. By default, no ACL is specified.