From eb00932bac21b51198fd2b73be51d7f62f2fb880 Mon Sep 17 00:00:00 2001 From: Noah White Date: Tue, 17 Feb 2026 14:22:59 +0000 Subject: [PATCH] fix: pass TF_VAR_admin_ip to container in infra-shell.sh The script exports TF_VAR_admin_ip but was not passing it to the docker container, causing tofu plan to prompt for var.admin_ip when running locally. Fixes GHO-60 --- docker/scripts/infra-shell.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/scripts/infra-shell.sh b/docker/scripts/infra-shell.sh index 6a7c5be..fc2d5af 100755 --- a/docker/scripts/infra-shell.sh +++ b/docker/scripts/infra-shell.sh @@ -350,6 +350,7 @@ if [[ "$RUN_CONTAINER" == "true" ]]; then -e TF_VAR_cloudflare_api_token \ -e TF_VAR_ssh_public_key \ -e TF_VAR_admin_subnets \ + -e TF_VAR_admin_ip \ -e R2_ACCESS_KEY_ID \ -e R2_SECRET_ACCESS_KEY \ -e TAILSCALE_API_KEY \