Compare commits

..

1 commit

Author SHA1 Message Date
41fb436140
feat(nimbolus): init a http terraform backend
All checks were successful
Check workflows / check_workflows (pull_request) Successful in 18s
Check meta / check_meta (pull_request) Successful in 18s
Run pre-commit on all files / pre-commit (push) Successful in 27s
Build all the nodes / Jaccess01 (pull_request) Successful in 28s
Build all the nodes / Jaccess04 (pull_request) Successful in 28s
Build all the nodes / netcore01 (pull_request) Successful in 27s
Run pre-commit on all files / pre-commit (pull_request) Successful in 33s
Build all the nodes / ap01 (pull_request) Successful in 41s
Build all the nodes / netcore02 (pull_request) Successful in 26s
Build all the nodes / bridge01 (pull_request) Successful in 59s
Build all the nodes / geo02 (pull_request) Successful in 59s
Build all the nodes / hypervisor03 (pull_request) Successful in 1m4s
Build all the nodes / lab-router01 (pull_request) Successful in 1m4s
Build all the nodes / hypervisor02 (pull_request) Successful in 1m4s
Build all the nodes / hypervisor01 (pull_request) Successful in 1m8s
Build all the nodes / geo01 (pull_request) Successful in 1m8s
Build all the nodes / cof02 (pull_request) Successful in 1m9s
Build all the nodes / build01 (pull_request) Successful in 1m10s
Build all the nodes / iso (pull_request) Successful in 1m9s
Build all the nodes / tower01 (pull_request) Successful in 50s
Build all the nodes / vault01 (pull_request) Successful in 1m2s
Build all the nodes / rescue01 (pull_request) Successful in 1m11s
Build the shell / build-shell (pull_request) Successful in 31s
Build all the nodes / web02 (pull_request) Successful in 50s
Build all the nodes / krz01 (pull_request) Successful in 1m43s
Build all the nodes / web01 (pull_request) Successful in 1m15s
Build all the nodes / web03 (pull_request) Successful in 1m3s
Build all the nodes / zulip01 (pull_request) Successful in 47s
Build all the nodes / storage01 (pull_request) Successful in 1m37s
Build all the nodes / compute01 (pull_request) Successful in 2m27s
2025-06-11 17:23:46 +02:00

View file

@ -10,7 +10,6 @@
}:
let
inherit (lib)
concatMapAttrsStringSep
escapeShellArg
getExe
mkEnableOption
@ -24,6 +23,12 @@ let
str
;
# from nixpkgs, commit b1371135b5db3fcf728114d92d5bd0218109598a
# FIXME: Should be replaced by nixpkgs lib when going to nixos-25.05
concatMapAttrsStringSep =
sep: f: attrs:
lib.concatStringsSep sep (lib.attrValues (lib.mapAttrs f attrs));
cfg = config.services.nimbolus-tf;
in
{