depot/cluster/services/soda/default.nix

14 lines
292 B
Nix
Raw Normal View History

2023-08-31 00:55:45 +02:00
{ depot, ... }:
2023-06-05 23:18:18 +02:00
{
monitoring.blackbox.targets.soda-machine = {
2023-08-31 00:55:45 +02:00
address = "soda.int.${depot.lib.meta.domain}:22";
2023-06-05 23:18:18 +02:00
module = "sshConnect";
};
2023-12-03 23:18:38 +01:00
dns.records = {
soda.target = [ depot.hours.VEGAS.interfaces.primary.addrPublic ];
"soda.int".target = [ "10.10.2.206" ];
};
2023-06-05 23:18:18 +02:00
}