From 46d67330c280b114cd36ae7d739bd66346eb5dea Mon Sep 17 00:00:00 2001 From: vandomej Date: Sun, 28 Sep 2025 22:02:18 -0700 Subject: [PATCH] Fixing some dangling variables --- control_plane/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/control_plane/main.tf b/control_plane/main.tf index 8daca89..d008444 100644 --- a/control_plane/main.tf +++ b/control_plane/main.tf @@ -99,12 +99,12 @@ resource "talos_machine_secrets" "this" {} data "talos_machine_configuration" "this" { cluster_name = "${var.cluster_name}" machine_type = "controlplane" - cluster_endpoint = "https://10.5.0.0:6443" + cluster_endpoint = "https://10.5.0.1:6443" machine_secrets = talos_machine_secrets.this.machine_secrets } data "talos_client_configuration" "this" { - cluster_name = "example-cluster" + cluster_name = "${var.cluster_name}" client_configuration = talos_machine_secrets.this.client_configuration nodes = ["10.5.0.2"] }