Skip to content

Commit 30b9a7a

Browse files
littlejoPhilipSchmid
authored andcommitted
ignore change of content
1 parent 9f3ab14 commit 30b9a7a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

03-talos.tf

+5-2
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,11 @@ data "talos_cluster_kubeconfig" "this" {
126126
}
127127

128128
resource "local_file" "kubeconfig" {
129-
content = nonsensitive(data.talos_cluster_kubeconfig.this.kubeconfig_raw)
129+
content = data.talos_cluster_kubeconfig.this.kubeconfig_raw
130130
filename = local.path_to_kubeconfig_file
131+
lifecycle {
132+
ignore_changes = [content]
133+
}
131134
}
132135

133136
# Does currently not work because of the nodes reachability from the internet.
@@ -138,4 +141,4 @@ resource "local_file" "kubeconfig" {
138141
# endpoints = module.talos_control_plane_nodes.*.public_ip
139142
# control_plane_nodes = module.talos_control_plane_nodes.*.private_ip
140143
# worker_nodes = [for node in module.talos_worker_group : node.private_ip]
141-
# }
144+
# }

0 commit comments

Comments
 (0)