Talos on Proxmox WIP

This commit is contained in:
2026-09-01 17:31:47 -04:00
parent aedb670c35
commit ae8bf2926f
13 changed files with 170 additions and 11 deletions
+19
View File
@@ -0,0 +1,19 @@
resource "talos_machine_secrets" "this" {
talos_version = local.talos_version
}
resource "talos_image_factory_schematic" "this" {
schematic = file("${path.root}/files/talos_image_schematic.yml")
}
data "talos_image_factory_versions" "this" {
filters = {
stable_versions_only = true
}
}
data "talos_image_factory_urls" "this" {
talos_version = local.talos_version
schematic_id = talos_image_factory_schematic.this.id
platform = "nocloud"
}