Skip to content
Snippets Groups Projects
Commit 1fecbe31 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

These do not need to be recursive sets

parent 73b175ba
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ in lib.make-grid {
nodeExporterTargets = [ "monitoring" "payments" "storage1" "storage2" ];
in {
payments = rec {
payments = {
imports = [
lib.issuer
(import ./virtual-hardware.nix ({ publicIPv4 = "192.168.67.21"; }))
......@@ -38,7 +38,7 @@ in lib.make-grid {
];
};
storage2 = let publicIPv4 = "192.168.67.23"; in rec {
storage2 = let publicIPv4 = "192.168.67.23"; in {
imports = [
lib.storage
(import ./virtual-hardware.nix ({ inherit publicIPv4; }))
......
......@@ -20,7 +20,7 @@ in lib.make-grid {
nodeExporterTargets = [ "monitoring" "payments" "storage001" ];
in {
payments = rec {
payments = {
imports = [
lib.issuer
lib.hardware-aws
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment