mirror of
https://github.com/0x1d/terraform-proxmox-talos.git
synced 2025-12-15 14:18:22 +01:00
initial commit
This commit is contained in:
11
files.tf
Normal file
11
files.tf
Normal file
@@ -0,0 +1,11 @@
|
||||
# The image is generated on https://factory.talos.dev/ with QEMU guest addon enabled
|
||||
resource "proxmox_virtual_environment_download_file" "talos_nocloud_image" {
|
||||
for_each = toset(var.proxmox_nodes)
|
||||
content_type = "iso"
|
||||
datastore_id = "local"
|
||||
node_name = each.value
|
||||
file_name = "talos-v${var.talos_version}-nocloud-amd64.img"
|
||||
url = "https://factory.talos.dev/image/ce4c980550dd2ab1b17bbf2b08801c7eb59418eafe8f279833297925d67c7515/v${var.talos_version}/nocloud-amd64.raw.gz"
|
||||
decompression_algorithm = "gz"
|
||||
overwrite = false
|
||||
}
|
||||
Reference in New Issue
Block a user