From #2 (comment) .
The plugin should provide these TLS parameters. However, I don't have a good idea now to support a lot of parameters. Generally, I think one of the following forms should be okay.
WITH
root_ca = val,
client_ca = val,
...;
WITH
tls = {
"root_ca": val,
"client_ca": val,
...
};
I want to know/discuss if there's a good way to set all parameters at once.
Note
SensorBee's data package should provide an easy way to process parameters passed as data.Map. Ideally, it should also support something like (JSON) schema.
From #2 (comment) .
The plugin should provide these TLS parameters. However, I don't have a good idea now to support a lot of parameters. Generally, I think one of the following forms should be okay.
I want to know/discuss if there's a good way to set all parameters at once.
Note
SensorBee's data package should provide an easy way to process parameters passed as
data.Map. Ideally, it should also support something like (JSON) schema.