From 8183200652ddfced30ca0818fefc4bb04a9a41bc Mon Sep 17 00:00:00 2001 From: Danylo Vanin Date: Mon, 26 Sep 2022 18:45:36 +0300 Subject: [PATCH] [GONRG-5746] Add dependency on redis ns --- modules/osdu/https.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/osdu/https.tf b/modules/osdu/https.tf index 13f79b43..a189f291 100644 --- a/modules/osdu/https.tf +++ b/modules/osdu/https.tf @@ -37,7 +37,7 @@ resource "local_file" "backend-config" { module "kubectl" { source = "terraform-google-modules/gcloud/google//modules/kubectl-wrapper" - module_depends_on = [google_container_cluster.primary] + module_depends_on = [google_container_cluster.primary, kubernetes_namespace.redis] project_id = var.service_google_project cluster_name = google_container_cluster.primary.name cluster_location = google_container_cluster.primary.location -- GitLab