You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All guides of using kafka connect say to run ./bin/connect-standalone providing connect-standalone.properties and then connect using url = "http://localhost:8083".
However, I noticed that for configuring connectors via GUI interface Confluent Cloud provides API endpoint: https://confluent.cloud/api/accounts/{{ env_id }}/clusters/{{ cluster_id }}
The format of API is the same, however the difference is that Confluent Cloud API uses JWT token authorization, but terraform sends Authorization: Basic header. So Terraform can't authorize.
Is it possible to add JWT authorization so the provider could work directly with Confluent Cloud?
If I wrong please explain the way how to use the provider with Confluent Cloud?
The text was updated successfully, but these errors were encountered:
We would love this feature as we've just started using your excellent confluent cloud provided and are looking as work arounds for connecting the SQL cdc connector into it
FWIW, I have a PR against the underlying Kafka Connect client library that adds the ability for it to pass along arbitrary headers (which I think would be a prerequisite for this work, unless we swap out or reimplement the underlying client lib).
All guides of using kafka connect say to run
./bin/connect-standalone
providingconnect-standalone.properties
and then connect usingurl = "http://localhost:8083"
.However, I noticed that for configuring connectors via GUI interface Confluent Cloud provides API endpoint:
https://confluent.cloud/api/accounts/{{ env_id }}/clusters/{{ cluster_id }}
The format of API is the same, however the difference is that Confluent Cloud API uses JWT token authorization, but terraform sends
Authorization: Basic
header. So Terraform can't authorize.Is it possible to add JWT authorization so the provider could work directly with Confluent Cloud?
If I wrong please explain the way how to use the provider with Confluent Cloud?
The text was updated successfully, but these errors were encountered: