0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-06-30 18:42:58 +00:00
terraform-provider-proxmox/examples/resources/proxmox_virtual_environment_file/resource.tf
Pavel Boldyrev c415f20923
fix: minor fixes in acceptance tests, examples, docs
Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
2025-06-27 21:18:19 -04:00

20 lines
580 B
HCL

resource "proxmox_virtual_environment_file" "latest_debian_12_bookworm_qcow2" {
content_type = "import"
datastore_id = "local"
node_name = "pve"
source_file {
path = "https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-generic-amd64.qcow2"
}
}
resource "proxmox_virtual_environment_file" "release_20231228_debian_12_bookworm_qcow2" {
content_type = "import"
datastore_id = "local"
node_name = "pve"
source_file {
path = "https://cloud.debian.org/images/cloud/bookworm/20231228-1609/debian-12-generic-amd64-20231228-1609.qcow2"
}
}