From 133ca38d22ce037845355019973411ee2988f831 Mon Sep 17 00:00:00 2001 From: phaer Date: Mon, 21 Feb 2022 17:54:39 +0100 Subject: [PATCH] terraform fmt --- main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index 7437d2f..8521b7f 100644 --- a/main.tf +++ b/main.tf @@ -167,7 +167,7 @@ resource "null_resource" "cluster_provisioning" { 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 { @@ -189,7 +189,7 @@ resource "null_resource" "cluster_provisioning" { } provisioner "local-exec" { - when = destroy + when = destroy command = "hcloud load-balancer delete traefik" } }