From ce66bfdc61bd5faf6f95cfd25cb09dc1447567ec Mon Sep 17 00:00:00 2001 From: Pavel Boldyrev <627562+bpg@users.noreply.github.com> Date: Wed, 30 Jul 2025 20:18:32 -0400 Subject: [PATCH] fix(examples): update ubuntu LXC image ref (#2070) Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com> --- .../resource_virtual_environment_download_file.tf | 6 +++--- example/variables.tf | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/example/resource_virtual_environment_download_file.tf b/example/resource_virtual_environment_download_file.tf index 2ddeba6b..99405d11 100644 --- a/example/resource_virtual_environment_download_file.tf +++ b/example/resource_virtual_environment_download_file.tf @@ -1,11 +1,11 @@ ## Debian and ubuntu image download -resource "proxmox_virtual_environment_download_file" "release_20250610_ubuntu_24_noble_lxc_img" { +resource "proxmox_virtual_environment_download_file" "release_20250701_ubuntu_24_10_lxc_img" { content_type = "vztmpl" datastore_id = "local" node_name = var.virtual_environment_node_name - url = var.release_20250610_ubuntu_24_noble_lxc_img_url - checksum = var.release_20250610_ubuntu_24_noble_lxc_img_checksum + url = var.release_20250701_ubuntu_24_10_lxc_img_url + checksum = var.release_20250701_ubuntu_24_10_lxc_img_checksum checksum_algorithm = "sha256" upload_timeout = 4444 overwrite_unmanaged = true diff --git a/example/variables.tf b/example/variables.tf index 04f3aa61..331411db 100644 --- a/example/variables.tf +++ b/example/variables.tf @@ -31,14 +31,14 @@ variable "latest_debian_12_bookworm_qcow2_img_url" { default = "https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-generic-amd64.qcow2" } -variable "release_20250610_ubuntu_24_noble_lxc_img_url" { +variable "release_20250701_ubuntu_24_10_lxc_img_url" { type = string - description = "The URL for the Ubuntu 24.04 LXC image" - default = "https://mirrors.servercentral.com/ubuntu-cloud-images/releases/24.04/release-20250610/ubuntu-24.04-server-cloudimg-amd64-root.tar.xz" + description = "The URL for the Ubuntu 24.10 LXC image" + default = "https://mirrors.servercentral.com/ubuntu-cloud-images/releases/24.10/release-20250701/ubuntu-24.10-server-cloudimg-amd64-root.tar.xz" } -variable "release_20250610_ubuntu_24_noble_lxc_img_checksum" { +variable "release_20250701_ubuntu_24_10_lxc_img_checksum" { type = string - description = "The checksum for the Ubuntu 24.04 LXC image" - default = "ae1fc4b5f020e6f1f2048beb5a7635f7bce4d72723239b7dea86af062cc1ab79" + description = "The checksum for the Ubuntu 24.10 LXC image" + default = "6caa4e90e4c2ae33d3fff0526c75cfc3d221e0c1ccd49d01229a44776af126d1" }