test/terraform: can't install helm until kubectl is configured
This commit is contained in:
parent
36e8afc7a0
commit
a439289809
1 changed files with 1 additions and 0 deletions
|
@ -52,6 +52,7 @@ resource "null_resource" "kubectl" {
|
||||||
|
|
||||||
resource "null_resource" "helm" {
|
resource "null_resource" "helm" {
|
||||||
count = "${var.init_cli ? 1 : 0 }"
|
count = "${var.init_cli ? 1 : 0 }"
|
||||||
|
depends_on = ["null_resource.kubectl"]
|
||||||
|
|
||||||
triggers {
|
triggers {
|
||||||
cluster = "${google_container_cluster.cluster.id}"
|
cluster = "${google_container_cluster.cluster.id}"
|
||||||
|
|
Loading…
Reference in a new issue