From 41791a372c86e462c1209576984ea6341cbf1f51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Can=C3=A9vet?= Date: Mon, 23 Nov 2020 07:51:19 +0100 Subject: [PATCH] Fix refactoring --- modules/eks-aws/main.tf | 2 +- modules/k3os-libvirt/main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/eks-aws/main.tf b/modules/eks-aws/main.tf index 839b7b0801..0b047730bb 100644 --- a/modules/eks-aws/main.tf +++ b/modules/eks-aws/main.tf @@ -147,6 +147,6 @@ resource "helm_release" "app_of_apps" { ] depends_on = [ - helm_release.argocd, + module.argocd, ] } diff --git a/modules/k3os-libvirt/main.tf b/modules/k3os-libvirt/main.tf index c79c93f068..60927ab0dd 100644 --- a/modules/k3os-libvirt/main.tf +++ b/modules/k3os-libvirt/main.tf @@ -73,7 +73,7 @@ resource "helm_release" "app_of_apps" { ] depends_on = [ - helm_release.argocd, + module.argocd, ] }