mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-30 10:33:46 +00:00
23 lines
842 B
HCL
23 lines
842 B
HCL
## Debian and ubuntu image download
|
|
|
|
resource "proxmox_virtual_environment_download_file" "release_20240514_ubuntu_22_jammy_lxc_img" {
|
|
content_type = "vztmpl"
|
|
datastore_id = "local"
|
|
node_name = "pve"
|
|
url = var.release_20240416_ubuntu_22_jammy_lxc_img_url
|
|
checksum = var.release_20240416_ubuntu_22_jammy_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
|
|
}
|