We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f3ab14 commit 30b9a7aCopy full SHA for 30b9a7a
03-talos.tf
@@ -126,8 +126,11 @@ data "talos_cluster_kubeconfig" "this" {
126
}
127
128
resource "local_file" "kubeconfig" {
129
- content = nonsensitive(data.talos_cluster_kubeconfig.this.kubeconfig_raw)
+ content = data.talos_cluster_kubeconfig.this.kubeconfig_raw
130
filename = local.path_to_kubeconfig_file
131
+ lifecycle {
132
+ ignore_changes = [content]
133
+}
134
135
136
# Does currently not work because of the nodes reachability from the internet.
@@ -138,4 +141,4 @@ resource "local_file" "kubeconfig" {
138
141
# endpoints = module.talos_control_plane_nodes.*.public_ip
139
142
# control_plane_nodes = module.talos_control_plane_nodes.*.private_ip
140
143
# worker_nodes = [for node in module.talos_worker_group : node.private_ip]
-# }
144
+# }
0 commit comments