2025-01-14 14:42:39 +00:00
|
|
|
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2021-05-09 15:23:02 +02:00
|
|
|
nodes = {
|
2025-01-14 14:42:39 +00:00
|
|
|
kafka_node = {
|
|
|
|
type = "kafka",
|
|
|
|
|
|
|
|
format = "json.kafka",
|
2021-05-09 15:23:02 +02:00
|
|
|
|
2025-01-14 14:42:39 +00:00
|
|
|
server = "localhost:9094",
|
|
|
|
protocol = "SASL_SSL",
|
|
|
|
client_id = "villas-node",
|
2021-05-09 15:23:02 +02:00
|
|
|
|
2025-01-14 14:42:39 +00:00
|
|
|
in = {
|
|
|
|
consume = "test-topic",
|
|
|
|
group_id = "villas-node"
|
|
|
|
},
|
|
|
|
out = {
|
|
|
|
produce = "test-topic"
|
|
|
|
},
|
2021-05-09 15:23:02 +02:00
|
|
|
|
2025-01-14 14:42:39 +00:00
|
|
|
ssl = {
|
|
|
|
ca = "/etc/ssl/certs/ca.pem",
|
|
|
|
},
|
|
|
|
sasl = {
|
|
|
|
mechanisms = "SCRAM-SHA-512",
|
|
|
|
username = "scram-sha-512-usr",
|
|
|
|
password = "scram-sha-512-pwd"
|
|
|
|
}
|
|
|
|
}
|
2021-05-09 15:23:02 +02:00
|
|
|
}
|