From edaa244d1b62f4dc0d4ff141162aa3afd2b67c65 Mon Sep 17 00:00:00 2001 From: fenix-gitea-admin Date: Wed, 20 Aug 2025 21:42:06 +0000 Subject: [PATCH] Update proxmox.tf --- proxmox.tf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/proxmox.tf b/proxmox.tf index 0c1f2ee..75a5f27 100644 --- a/proxmox.tf +++ b/proxmox.tf @@ -7,11 +7,11 @@ provider "proxmox" { } } resource "proxmox_virtual_environment_download_file" "Fedora-iso" { - content_type = "import" - datastore_id = "local-lvm" + content_type = "import" # for disk images + datastore_id = "local" # storage on your node node_name = "fenix" - file_name = "Fedora-Cloud-Base-Generic-41-1.4.x86_64.qcow2" - url = "https://mirror.plusline.net/fedora/linux/releases/41/Cloud/x86_64/images/Fedora-Cloud-Base-Generic-41-1.4.x86_64.qcow2" + file_name = "jammy-server-cloudimg-amd64.img" + url = "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img" } resource "proxmox_virtual_environment_vm" "proxmox-kubernetes-VM-template" { @@ -48,7 +48,7 @@ resource "proxmox_virtual_environment_vm" "proxmox-kubernetes-VM-template" { disk { datastore_id = "local-lvm" interface = "scsii" - file_id = proxmox_virtual_environment_download_file.Fedora-iso.id + file_id = proxmox_virtual_environment_download_file.Fedora-iso.file_name size = 20 }