From b900a35da56c43919f1f3e57568a91ea9e88872b Mon Sep 17 00:00:00 2001 From: fogs Date: Sun, 28 Feb 2021 15:16:49 +0100 Subject: [PATCH] Quoted references are deprecated Warning: Quoted references are deprecated on install-calico.tf line 13, in resource "null_resource" "calico": 13: depends_on = ["hcloud_server.master"] --- install-calico.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-calico.tf b/install-calico.tf index 56e2c56..a7b618f 100644 --- a/install-calico.tf +++ b/install-calico.tf @@ -10,6 +10,6 @@ resource "null_resource" "calico" { inline = ["kubectl apply -f https://docs.projectcalico.org/archive/v3.15/manifests/calico.yaml"] } - depends_on = ["hcloud_server.master"] + depends_on = [hcloud_server.master] }