2023-06-15 23:04:14 +02:00
|
|
|
{
|
2024-03-02 22:05:30 +01:00
|
|
|
tflib,
|
|
|
|
pkgs,
|
|
|
|
}: {
|
|
|
|
name,
|
|
|
|
source,
|
|
|
|
...
|
2024-03-09 16:34:52 +01:00
|
|
|
} @ args: {config, ...}: {
|
|
|
|
module.${name} =
|
|
|
|
{
|
|
|
|
source = let
|
|
|
|
module =
|
|
|
|
(tflib.mkTerranixConfiguration {
|
|
|
|
inherit pkgs;
|
|
|
|
modules = [
|
|
|
|
source
|
|
|
|
{
|
|
|
|
_file = ./terraform-module.nix;
|
|
|
|
_module.args = builtins.removeAttrs config._module.args ["pkgs" "tflib"];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
specialArgs = config._module.specialArgs;
|
|
|
|
})
|
|
|
|
.config
|
|
|
|
.build
|
|
|
|
.json;
|
|
|
|
in
|
|
|
|
pkgs.runCommandNoCC "${name}-module" {} ''
|
|
|
|
mkdir -p $out/
|
|
|
|
ln -s ${module} $out/main.tf.json
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
// builtins.removeAttrs args ["name" "source"];
|
2024-03-02 22:05:30 +01:00
|
|
|
}
|