From 3c16ca5593e717b8a622c98c390b601e3aeb694a Mon Sep 17 00:00:00 2001 From: Gerald Pinder Date: Sat, 17 May 2025 17:32:06 -0400 Subject: [PATCH] feat: Add the ability to set args for module calls --- src-tsp/main.tsp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src-tsp/main.tsp b/src-tsp/main.tsp index b1d54bc..e1673f9 100644 --- a/src-tsp/main.tsp +++ b/src-tsp/main.tsp @@ -125,6 +125,10 @@ model ModuleDefaults { * https://blue-build.org/reference/module/#no-cache-optional */ `no-cache`?: boolean = false; + + /** Environment variables to add for the module call. + */ + env?: Record; } @jsonSchema("module-custom-v1.json")