Skip to content

Commit

Permalink
fix: Format of key/cert upon creation of ext kafka integration endpoi…
Browse files Browse the repository at this point in the history
…nt (#587)
  • Loading branch information
jclarysse authored Dec 6, 2024
1 parent c5ae13a commit 83f5772
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
17 changes: 14 additions & 3 deletions docs/products/flink/howto/ext-kafka-flink-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,24 @@ Where:
and ports to connect to.
- `security_protocol`: The type of security protocol to use
for the connection, which is `SASL` in this case.
- `ssl_ca_cert`: The path to the SSL CA certificate.
- `ssl_client_cert`: The path to the SSL client certificate.
- `ssl_client_key`: The path to the SSL client key.
- `ssl_ca_cert`: The content of the SSL CA certificate.
- `ssl_client_cert`: The content of the SSL client certificate.
- `ssl_client_key`: The content of the SSL client key.
- `ssl_endpoint_identification_algorithm`: The endpoint
identification algorithm to use for SSL verification. For
example, `https`.

:::important
After downloading your keys or certificates, ensure the cipher is on its own line,
and the PEM markers are delimited by a line feed, following the
guidelines in [RFC 1421](https://www.rfc-editor.org/rfc/rfc1421#section-4.4).

Use the following bash command to format the content correctly:
```
cat $downloaded_cert_or_key | tr -d '\n' | sed 's/\([EY]---[-]*\)\([^-]\)/\1\n\2/g;s/\(=\)\(---[-]*\)/\1\n\2/g'
```
:::

#### SASL_PLAINTEXT

To create a SASL_PLAINTEXT protocol type endpoint, use the following
Expand Down
4 changes: 4 additions & 0 deletions docs/tools/cli/service/integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ avn service integration-endpoint-create --endpoint-name demo-ext-kafka \
--user-config-json '{"bootstrap_servers":"servertest:123","security_protocol":"PLAINTEXT"}'
```

:::note
For more examples of creating external Apache Kafka® endpoints, see [Integrate Aiven for Apache Flink® with Apache Kafka®](/docs/products/flink/howto/ext-kafka-flink-integration#step-4-create-an-external-apache-kafka-endpoint).
:::

**Example:** Create an external Loggly endpoint named `Loggly-ext`.

```bash
Expand Down

0 comments on commit 83f5772

Please sign in to comment.