forked from confluentinc/confluent-kafka-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestconf.json
More file actions
17 lines (17 loc) · 767 Bytes
/
testconf.json
File metadata and controls
17 lines (17 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"topic": "test-topic",
"bootstrap.servers": "$MY_BOOTSTRAP_SERVER_ENV",
"schema.registry.url": "$MY_SCHEMA_REGISTRY_URL_ENV",
"avro-https": {
"schema.registry.url": "$MY_SCHEMA_REGISTRY_SSL_URL_ENV",
"schema.registry.ssl.ca.location": "$MY_SCHEMA_REGISTRY_SSL_CA_LOCATION_ENV",
"schema.registry.ssl.certificate.location": "$MY_SCHEMA_REGISTRY_SSL_CERTIFICATE_LOCATION_ENV",
"schema.registry.ssl.key.location": "$MY_SCHEMA_REGISTRY_SSL_KEY_LOCATION_ENV"
},
"avro-basic-auth": {
"schema.registry.url": "http://localhost:8083",
"schema.registry.basic.auth.user.info": "ckp_tester:test_secret",
"sasl.username": "ckp_tester",
"sasl.password": "test_secret"
}
}