From e72071e82df43108eeec1a1dea777183f4ec893f Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Sun, 19 Oct 2025 21:03:23 +0200 Subject: [PATCH] rename await 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 fd7b6669..acc94a3e 100644 --- a/deployment/run/tf-proxmox/main.tf +++ b/deployment/run/tf-proxmox/main.tf @@ -168,7 +168,7 @@ resource "proxmox_virtual_environment_vm" "nix_vm" { } } -resource "null_resource" "wait_for_ssh" { +resource "null_resource" "await_ssh" { depends_on = [ proxmox_virtual_environment_vm.nix_vm ] @@ -180,7 +180,7 @@ resource "null_resource" "wait_for_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 = [ - null_resource.wait_for_ssh + null_resource.await_ssh ] source = "../tf-single-host" nixos_conf = var.nixos_conf