From d94d01ff935986274f2ab31a3864f82a44174b56 Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Sun, 19 Oct 2025 20:34:06 +0200 Subject: [PATCH] make path in single host explicit Signed-off-by: Kiara Grouwstra --- deployment/run/tf-single-host/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/run/tf-single-host/main.tf b/deployment/run/tf-single-host/main.tf index 2dc0625a..72ec2c12 100644 --- a/deployment/run/tf-single-host/main.tf +++ b/deployment/run/tf-single-host/main.tf @@ -43,6 +43,6 @@ resource "terraform_data" "nixos" { } # TODO: refactor back to command="ignoreme" interpreter=concat([]) to protect sensitive data from error logs? # TODO: build on target? - command = "sh ../ssh-single-host/run.sh" + command = "sh ${path.module}/../ssh-single-host/run.sh" } }