Skip to content
Snippets Groups Projects
grid.nix 926 B
Newer Older
# Load the helper function and call it with arguments tailored for the testing
# 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 {
    importDef = default: path: (
      if builtins.pathExists path
      then import path
      else default
    );
Florian Sesser's avatar
Florian Sesser committed
    sshUsers = importDef {} ./secrets/staging-users.nix;
    "payments" = import ../../lib/make-issuer.nix ({
      publicIPv4 = "18.197.42.120";
      hardware = ../../lib/issuer-aws.nix;
    "storage001" = import ../../lib/make-testing.nix (cfg // {
      publicIPv4 = "3.120.26.190";
      hardware = ./testing001-hardware.nix;
Jean-Paul Calderone's avatar
Jean-Paul Calderone committed
      stateVersion = "19.03";