diff --git a/terraform-modules/talos/talos.tf b/terraform-modules/talos/talos.tf index 78da3c5c..74b641c7 100644 --- a/terraform-modules/talos/talos.tf +++ b/terraform-modules/talos/talos.tf @@ -63,8 +63,12 @@ resource "talos_machine_bootstrap" "this" { } resource "talos_cluster_kubeconfig" "this" { + depends_on = [talos_machine_bootstrap.this] client_configuration = talos_machine_secrets.this.client_configuration node = var.control_planes[0].server_ip + timeouts = { + create = "3m" + } } data "http" "talos_health" {