Skip to content

Commit 39a1661

Browse files
DOC-5709 fixed dodgy note formatting
1 parent a330785 commit 39a1661

File tree

1 file changed

+3
-1
lines changed
  • content/integrate/redis-data-integration/data-pipelines

1 file changed

+3
-1
lines changed

content/integrate/redis-data-integration/data-pipelines/deploy.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ secrets are only relevant for TLS/mTLS connections.
5252
{{< note >}}When creating secrets for TLS or mTLS, ensure that all certificates and keys are in `PEM` format. The only exception to this is that for PostgreSQL, the private key `SOURCE_DB_KEY` secret must be in `DER` format. If you have a key in `PEM` format, you must convert it to `DER` before creating the `SOURCE_DB_KEY` secret using the command:
5353

5454
```bash
55-
openssl pkcs8 -topk8 -inform PEM -outform DER -in /path/to/myclient.pem -out /path/to/myclient.pk8 -nocrypt
55+
openssl pkcs8 -topk8 -inform PEM -outform DER \
56+
-in /path/to/myclient.pem \
57+
-out /path/to/myclient.pk8 -nocrypt
5658
```
5759

5860
This command assumes that the private key is not encrypted. See the [`openssl` documentation](https://docs.openssl.org/master/) to learn how to convert an encrypted private key.

0 commit comments

Comments
 (0)