mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-29 18:21:10 +00:00
Signed-off-by: Marco Attia <54147992+Vaneixus@users.noreply.github.com> Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com> Co-authored-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
33 lines
1.2 KiB
HCL
33 lines
1.2 KiB
HCL
## Debian and ubuntu image download
|
|
|
|
resource "proxmox_virtual_environment_download_file" "release_20250610_ubuntu_24_noble_lxc_img" {
|
|
content_type = "vztmpl"
|
|
datastore_id = "local"
|
|
node_name = "pve"
|
|
url = var.release_20250610_ubuntu_24_noble_lxc_img_url
|
|
checksum = var.release_20250610_ubuntu_24_noble_lxc_img_checksum
|
|
checksum_algorithm = "sha256"
|
|
upload_timeout = 4444
|
|
overwrite_unmanaged = true
|
|
}
|
|
|
|
resource "proxmox_virtual_environment_download_file" "latest_debian_12_bookworm_qcow2_img" {
|
|
content_type = "iso"
|
|
datastore_id = "local"
|
|
file_name = "debian-12-generic-amd64.img"
|
|
node_name = "pve"
|
|
url = var.latest_debian_12_bookworm_qcow2_img_url
|
|
overwrite = true
|
|
overwrite_unmanaged = true
|
|
}
|
|
|
|
resource "proxmox_virtual_environment_download_file" "latest_debian_12_bookworm_qcow2" {
|
|
content_type = "import"
|
|
datastore_id = "local"
|
|
file_name = "debian-12-generic-amd64.qcow2"
|
|
node_name = "pve"
|
|
url = var.latest_debian_12_bookworm_qcow2_img_url
|
|
overwrite = true
|
|
overwrite_unmanaged = true
|
|
}
|