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

Restyle ref: code blocks around remote modify sse, etc. #3581

Merged
merged 1 commit into from
May 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions content/docs/command-reference/remote/modify.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,18 +246,17 @@ methods that are performed by DVC (`list_objects_v2` or `list_objects`,
$ dvc remote modify myremote listobjects true
```

- `sse` - server-side encryption algorithm to use: `AES256` or `aws:kms`.
By default, no encryption is used.
- `sse` - server-side encryption algorithm to use: `AES256` or `aws:kms`. By
default, no encryption is used.

```dvc
$ dvc remote modify myremote sse AES256
```

- `sse_kms_key_id` - identifier of the key to encrypt data uploaded when using
[SSE-KMS](https://docs.aws.amazon.com/AmazonS3/latest/userguide/UsingKMSEncryption.html)
(see `sse`). This parameter will be passed
directly to AWS S3, so DVC supports any value that S3 supports, including both
key IDs and aliases.
(see `sse`). This parameter will be passed directly to AWS S3, so DVC supports
any value that S3 supports, including both key IDs and aliases.

```dvc
$ dvc remote modify --local myremote sse_kms_key_id 'key-alias'
Expand Down