Skip to content

Instantly share code, notes, and snippets.

@denzhel
Created June 12, 2022 07:32
Show Gist options
  • Select an option

  • Save denzhel/21681e71671c038580048006f3ab179c to your computer and use it in GitHub Desktop.

Select an option

Save denzhel/21681e71671c038580048006f3ab179c to your computer and use it in GitHub Desktop.
use cp-kafka-connect with localstack

To allow cp-kafka-connect connectors, for example S3, to access localstack resources in the cluster, use the following not well documented configs:

"store.url": "http://localstack:4566",
"s3.region": "localstackDefinedRegion",
"s3.bucket.name": "someBucketName",
"aws.access.key.id": "test",
"aws.secret.access.key": "test"

Added this also to the only post I found about this issue: confluentinc/kafka-connect-storage-cloud#372

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment