Confluent Cloud
Deliver event data to Confluent Cloud for fully managed Apache Kafka streaming.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
bootstrap_servers | string | Yes | The Confluent Cloud bootstrap server address. |
topic | string | Yes | The Kafka topic to produce messages to. |
api_key | secret | Yes | The Confluent Cloud API key for authentication. |
api_secret | secret | Yes | The Confluent Cloud API secret for authentication. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Confluent Cloud or filter by Cloud Storage.
- Click Install, select a variant if available, and fill in the required fields.
- Click Install Integration to create the integration with a ready-to-use default configuration.
API Setup
curl -X POST http://localhost:8084/v1/admin/integration-catalog/confluent_cloud/install \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Confluent Cloud",
"variant": "default",
"config": {
"bootstrap_servers": "pkc-xxxxx.region.provider.confluent.cloud:9092",
"topic": "events"
},
"delivery_mode": "server_side"
}'Delivery
Events are delivered server-side from your Datafly Signal infrastructure directly to Confluent Cloud. No client-side scripts are loaded for this integration.
Visit Confluent Cloud documentation for full API documentation and credential setup instructions.