From d78dc87b91359811fa6f8ec9cd0d06e95a276d12 Mon Sep 17 00:00:00 2001 From: BryanFauble <17128019+BryanFauble@users.noreply.github.com> Date: Tue, 28 May 2024 19:09:07 -0700 Subject: [PATCH] Depend on the ocean controllers installed first --- modules/internal-k8-infra/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/internal-k8-infra/main.tf b/modules/internal-k8-infra/main.tf index d8a76c9f..f72749ed 100644 --- a/modules/internal-k8-infra/main.tf +++ b/modules/internal-k8-infra/main.tf @@ -59,7 +59,7 @@ resource "helm_release" "airflow" { chart = "airflow" namespace = "airflow" version = "1.11.0" - depends_on = [kubernetes_namespace.airflow] + depends_on = [kubernetes_namespace.airflow, module.ocean-controller, module.ocean-aws-k8s] # https://github.com/hashicorp/terraform-provider-helm/issues/683#issuecomment-830872443 wait = false