From 74743b00fd43822d7e246e944c4449e8ba7d4c9c Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Mon, 20 Oct 2025 19:28:35 +0200 Subject: [PATCH] clean some comments Signed-off-by: Kiara Grouwstra --- deployment/run/tf-proxmox/main.tf | 7 ------- 1 file changed, 7 deletions(-) diff --git a/deployment/run/tf-proxmox/main.tf b/deployment/run/tf-proxmox/main.tf index a0d86e57..228f6ffb 100644 --- a/deployment/run/tf-proxmox/main.tf +++ b/deployment/run/tf-proxmox/main.tf @@ -110,11 +110,6 @@ resource "proxmox_virtual_environment_vm" "nix_vm" { ssd = true backup = false cache = "none" - - # FIXME make the provider allow this as a distinct block to allow making this depend on VM id? - # FIXME replace with an effectful ~~function~~template from vm_id replacing resource `proxmox_virtual_environment_file.upload` - # import_from = "local:import/${proxmox_virtual_environment_vm.nix_vm.vm_id}-${local.dump_name}" # bogus import name to test if it would accept self-referential values here # may not refer to itself - # import_from = "local:import/${local.dump_name}" import_from = proxmox_virtual_environment_file.upload.id } @@ -162,7 +157,6 @@ 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, @@ -170,7 +164,6 @@ module "nixos-rebuild" { ] source = "../tf-single-host" nixos_conf = var.nixos_conf - # username = var.ssh_user # refers to the proxmox ssh user, not the VM one username = "root" host = proxmox_virtual_environment_vm.nix_vm.ipv4_addresses[1][0] key_file = var.key_file