From f13348fb57f02caec40e12a45e490e0cea5cbf84 Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Mon, 13 Oct 2025 18:16:42 +0200 Subject: [PATCH] add fixmes Signed-off-by: Kiara Grouwstra --- deployment/run/tf-proxmox/main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deployment/run/tf-proxmox/main.tf b/deployment/run/tf-proxmox/main.tf index e17fe058..809a80c9 100644 --- a/deployment/run/tf-proxmox/main.tf +++ b/deployment/run/tf-proxmox/main.tf @@ -17,6 +17,8 @@ locals { provider "proxmox" { endpoint = "https://${var.host}:8006/" insecure = true + # FIXME secure + # insecure = false # used only for files and creating custom disks ssh { @@ -85,6 +87,8 @@ resource "proxmox_virtual_environment_file" "upload" { # path = "/tmp/proxmox-image/${local.dump_name}" path = var.image file_name = local.dump_name + # FIXME compute and pass hash (so identical builds don't trigger drift) + # checksum = "sha256" } }