From b303c0e9860152615db88acf21c0f5271e2a04c9 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Sat, 29 Jul 2017 15:05:21 -0700 Subject: [PATCH] digital-ocean: Add ssh step dependency on the 0th controller --- digital-ocean/container-linux/kubernetes/ssh.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/digital-ocean/container-linux/kubernetes/ssh.tf b/digital-ocean/container-linux/kubernetes/ssh.tf index fac3cd90..85bdf2d5 100644 --- a/digital-ocean/container-linux/kubernetes/ssh.tf +++ b/digital-ocean/container-linux/kubernetes/ssh.tf @@ -1,7 +1,7 @@ # Secure copy bootkube assets to ONE controller and start bootkube to perform # one-time self-hosted cluster bootstrapping. resource "null_resource" "bootkube-start" { - depends_on = ["module.bootkube"] + depends_on = ["module.bootkube", "digitalocean_droplet.controllers"] connection { type = "ssh"