2021-05-09 15:23:02 +02:00
|
|
|
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
2023-08-31 11:25:01 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2021-05-09 15:23:02 +02:00
|
|
|
nodes = {
|
2024-02-29 21:36:38 +01:00
|
|
|
kafka_node = {
|
|
|
|
type = "kafka",
|
2021-05-09 15:23:02 +02:00
|
|
|
|
2024-02-29 21:36:38 +01:00
|
|
|
format = "json.kafka",
|
2021-05-09 15:23:02 +02:00
|
|
|
|
2024-02-29 21:36:38 +01:00
|
|
|
server = "localhost:9094",
|
|
|
|
protocol = "SASL_SSL",
|
|
|
|
client_id = "villas-node",
|
2021-05-09 15:23:02 +02:00
|
|
|
|
2024-02-29 21:36:38 +01:00
|
|
|
in = {
|
|
|
|
consume = "test-topic",
|
|
|
|
group_id = "villas-node"
|
|
|
|
},
|
|
|
|
out = {
|
|
|
|
produce = "test-topic"
|
|
|
|
},
|
|
|
|
|
|
|
|
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
|
|
|
}
|