[KAFKA] Add docker-compose to sample project
[dmaap/kafka11aaf.git] / sampleClient / src / main / resources / application.yaml
1 kafka:
2   kafkaBootstrapServers: [localhost:9092]
3   pollingTimeout: 10
4   consumerGroup: test-consumer-group
5   consumerID: test-id
6   consumerTopics: [test-topic.1]
7   producerTopics: [test-topic.1]
8   kafkaSaslJaasConfig: ${SASL_JAAS_CONFIG:org.apache.kafka.common.security.scram.ScramLoginModule required username="client" password="client-secret";}