summaryrefslogtreecommitdiffstats
path: root/sampleClient/src/main/resources/application.yaml
blob: b8a0f706e209e51a6e3206bc350748fdc3aa3e39 (plain)
1
2
3
4
5
6
7
8
9
10
11
kafka:
  kafkaBootstrapServers: [localhost:9092]
  pollingTimeout: 10
  consumerGroup: my-consumer-group
  consumerID: my-consumer-id
  consumerTopics: [test.mytopic.1, test.mytopic.2]
  producerTopics: [test.mytopic.3]
  kafkaSaslJaasConfig: ${SASL_JAAS_CONFIG:org.apache.kafka.common.security.scram.ScramLoginModule required username=admin password=admin-secret;}

  #kafkaSaslJaasConfig: ${SASL_JAAS_CONFIG:org.apache.kafka.common.security.plain.PlainLoginModule required username=admin password=admin-secret;}
  #kafkaSaslMechanism: ${SASL_MECHANISM:PLAIN}