# Load the helper function and call it with arguments tailored for the local # grid. It will make the morph configuration for us. We share this function # with the production grid and have one fewer possible point of divergence. import ../../lib/make-grid.nix { name = "LocalDev"; config = ./config.json; nodes = cfg: let sshUsers = import ../../../../PrivateStorageSecrets/localdev-users.nix; vpnClientIPs = [ "172.23.23.11" "172.23.23.12" "172.23.23.13" ]; # TBD: derive automatically hostsMap = { "172.23.23.1" = [ "monitoring1" "monitoring1.monitoringvpn" ]; "172.23.23.11" = [ "payments1" "payments1.monitoringvpn" ]; "172.23.23.12" = [ "storage1" "storage1.monitoringvpn" ]; "172.23.23.13" = [ "storage2" "storage2.monitoringvpn" ]; }; in { "payments1" = import ../../lib/make-issuer.nix (rec { publicIPv4 = "192.168.67.21"; monitoringvpnIPv4 = "172.23.23.11"; inherit sshUsers; hardware = import ./virtual-hardware.nix ({ inherit publicIPv4; }); stateVersion = "19.03"; } // cfg); "storage1" = import ../../lib/make-testing.nix (rec { publicIPv4 = "192.168.67.22"; monitoringvpnIPv4 = "172.23.23.12"; inherit sshUsers; hardware = import ./virtual-hardware.nix ({ inherit publicIPv4; }); stateVersion = "19.09"; } // cfg); "storage2" = import ../../lib/make-testing.nix (rec { publicIPv4 = "192.168.67.23"; monitoringvpnIPv4 = "172.23.23.13"; inherit sshUsers; hardware = import ./virtual-hardware.nix ({ inherit publicIPv4; }); stateVersion = "19.09"; } // cfg); "monitoring1" = import ../../lib/make-monitoring.nix (rec { publicIPv4 = "192.168.67.24"; monitoringvpnIPv4 = "172.23.23.1"; inherit vpnClientIPs; inherit hostsMap; inherit sshUsers; nodeExporterTargets = [ "monitoring1" "payments1" "storage1" "storage2" ]; # TBD: derive automatically nginxExporterTargets = [ ]; hardware = import ./virtual-hardware.nix ({ inherit publicIPv4; }); stateVersion = "19.09"; } // cfg); }; }