From 96539720fde44998ff10244e20df5f52f2abfb1b Mon Sep 17 00:00:00 2001 From: phaer Date: Tue, 22 Feb 2022 00:32:30 +0100 Subject: [PATCH] remove triggers on cluster_provisioning --- main.tf | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/main.tf b/main.tf index 8521b7f..6d704fd 100644 --- a/main.tf +++ b/main.tf @@ -161,13 +161,11 @@ data "hcloud_load_balancer" "traefik" { resource "null_resource" "cluster_provisioning" { - - triggers = { - agent_ids = "${join(",", module.agents.*.id)}" - control_plane_ids = "${join(",", concat([module.first_control_plane.id], module.control_planes.*.id))}" - } - - depends_on = [null_resource.first_control_plane, null_resource.control_planes, null_resource.agents] + depends_on = [ + null_resource.first_control_plane, + null_resource.control_planes, + null_resource.agents + ] provisioner "remote-exec" { connection {