19 lines
524 B
YAML
19 lines
524 B
YAML
server:
|
|
port: 8000
|
|
goroutines: 1000
|
|
kafka_topic: KAFKA_TOPIC
|
|
|
|
kafka:
|
|
bootstrap_servers: BOOTSTRAP_SERVERS # read from environment variable
|
|
ssl_endpoint_algorithm: https
|
|
sasl_mechanism: PLAIN
|
|
security_protocol: SASL_SSL
|
|
request_timeout_ms: 20000
|
|
retry_backoff_ms: 500
|
|
sasl_user: KAFKA_SASL_USER # read from environment variable
|
|
sasl_password: KAFKA_SASL_PASSWORD # read from environment variable
|
|
|
|
schemaRegistry:
|
|
endpoint: SCHEMA_REGISTRY_ENDPOINT
|
|
topics: SCHEMA_TOPICS
|