From 1b9c99b2d3fcb042d35e193be079baef104e2836 Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Mon, 20 Oct 2025 17:35:48 +0200 Subject: [PATCH] fix tf syntax Signed-off-by: Kiara Grouwstra --- deployment/run/tf-proxmox/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/run/tf-proxmox/main.tf b/deployment/run/tf-proxmox/main.tf index 30f7ef17..b36cb1dc 100644 --- a/deployment/run/tf-proxmox/main.tf +++ b/deployment/run/tf-proxmox/main.tf @@ -176,8 +176,8 @@ resource "null_resource" "await_ssh" { # FIXME expose (and handle thru) [`exec`](https://pve.proxmox.com/pve-docs/api-viewer/#/nodes/{node}/qemu/{vmid}/agent/exec) endpoint in proxmox TF provider? wait, what command would i use it for?: https://github.com/bpg/terraform-provider-proxmox/issues/1576 module "nixos-rebuild" { depends_on = [ - data.external.hash - null_resource.await_ssh + data.external.hash, + null_resource.await_ssh, ] source = "../tf-single-host" nixos_conf = var.nixos_conf