Remove tfplan

This commit is contained in:
2026-09-02 14:14:49 -04:00
parent ae8bf2926f
commit 2d661a1a76
7 changed files with 57 additions and 5 deletions
+13
View File
@@ -16,4 +16,17 @@ data "talos_image_factory_urls" "this" {
talos_version = local.talos_version
schematic_id = talos_image_factory_schematic.this.id
platform = "nocloud"
}
data "talos_machine_configuration" "this" {
for_each = { for guest in var.vm_guests: guest.name => guest if contains(["controlplane", "worker"], guest.role) }
cluster_endpoint = local.cluster_endpoint
cluster_name = var.cluster_name
config_patches = []
docs = false
examples = false
kubernetes_version = var.kubernetes_version
machine_secrets = talos_machine_secrets.this.machine_secrets
machine_type = each.value.role
talos_version = local.talos_version
}