16 lines
495 B
Terraform
16 lines
495 B
Terraform
resource "proxmox_virtual_environment_file" "arch_qcow" {
|
|
for_each = data.proxmox_virtual_environment_node.hvc01
|
|
content_type = "import"
|
|
datastore_id = "local"
|
|
node_name = each.value.id
|
|
overwrite = true
|
|
source_file {
|
|
checksum = local.arch_qcow_hash
|
|
file_name = "archlinux_cloudimg_amd64.qcow2"
|
|
insecure = false
|
|
min_tls = "1.2"
|
|
path = "https://${var.arch_mirror}/images/latest/Arch-Linux-x86_64-cloudimg.qcow2"
|
|
}
|
|
timeout_upload = 300
|
|
upload_mode = "stream"
|
|
} |