depot/cluster/services/consul/default.nix

23 lines
436 B
Nix
Raw Normal View History

2023-03-05 21:39:15 +02:00
{ config, lib, ... }:
let
cfg = config.services.consul;
in
{
hostLinks = lib.genAttrs cfg.nodes.agent (hostName: {
consul = {
ipv4 = config.vars.mesh.${hostName}.meshIp;
};
});
services.consul = {
nodes.agent = [ "checkmate" "thunderskin" "VEGAS" "prophet" ];
nixos.agent = [
./agent.nix
./remote-api.nix
];
2023-03-05 21:39:15 +02:00
};
dns.records."consul-remote.internal".consulService = "consul-remote";
2023-03-05 21:39:15 +02:00
}