fabaccess-bffh/examples/bffh.dhall
2020-12-15 13:04:21 +01:00

21 lines
596 B
Plaintext

{ actor_connections = [{ _1 = "Testmachine", _2 = "Actor" }]
, actors =
{ Actor = { name = "Shelly", params = {=} }
}
, init_connections = [{ _1 = "Initiator", _2 = "Testmachine" }]
, initiators =
{ Initiator = { name = "TCP-Listen", params = {=} }
}
, listens = [{ address = "localhost", port = Some 59661 }]
, machines =
{ Testmachine =
{ description = Some "A test machine"
, disclose = "lab.test.read"
, manage = "lab.test.admin"
, name = "Testmachine"
, read = "lab.test.read"
, write = "lab.test.write"
} }
, mqtt_url = "tcp://localhost:1883"
}