Split project

This commit is contained in:
2026-09-08 00:15:03 -04:00
parent 33dc172296
commit 02516f403a
33 changed files with 223 additions and 44 deletions
+16
View File
@@ -0,0 +1,16 @@
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"
}