fabaccess-bffh/examples/bffh.dhall

25 lines
602 B
Plaintext
Raw Normal View History

2021-09-25 15:50:45 +02:00
{ actor_connections =
-- Link up machines to actors
[ { _1 = "Testmachine", _2 = "Shelly_1234" }
, { _1 = "Another", _2 = "Bash" }
, { _1 = "Yetmore", _2 = "Bash2" }
, { _1 = "Yetmore", _2 = "FailBash" }
]
, actors = ./actors.dhall
, init_connections = [] : List { _1 : Text, _2 : Text }
, initiators = ./initiators.dhall
, listens =
2021-10-20 12:58:05 +02:00
[ "127.0.0.1"
, "::1"
, "[::1]:1235"
, "localhost:1234"
, "localhost"
, "notahost:541"
, "notahostandnoport"
2021-01-20 12:55:15 +01:00
]
2021-09-25 15:50:45 +02:00
, machines = ./machines.dhall
2021-10-20 18:37:50 +02:00
, db_path = "/tmp/bffh/"
2021-09-25 15:50:45 +02:00
, roles = ./roles.dhall
, mqtt_url = "tcp://localhost:1883"
2020-12-15 13:04:21 +01:00
}