I have written a Spring cloud stream message producer which is successfully posting the payload to the topic on my local bootstrap server. I want to post the payload onto the topic that I have created on Confluent Cloud. What configuration changes do I need to make? Below is the configuration for localhost which is working.
spring:
cloud:
stream:
bindings:
output:
destination: ordersTopic
content-type: application/json
kafka:
binder:
zkNodes: localhost
brokers: localhost
default-binder: kafka