Mario
Mario
Cant wait for the full release ! 😄
deprecate [`compress`, `uncompress`, `zip`, `unzip` ] because they can be fulfilled in one go just by making `tar` and its far more superior 😎 (also `untar?` 👀 ) if its...
Is there a timeline on merging this PR? This feature is very important for my workflow and I would like to know if I will be able to get it...
Configuration 1. I install argocd with helm_release provider 2. I've setup my argocd application on a custom module 3. Inside the module I've set up `argocd_application` resources that contain `depends_on...
``` module "argo_apps" { source = "./helm/argocd/" ... } provider "argocd" { username = "admin" password = var.argocd_admin_password port_forward = true plain_text = true } ``` inside argo_apps module ```...
argocd version I use ``` resource "helm_release" "argocd" { name = "argocd" repository = "https://argoproj.github.io/argo-helm" chart = "argo-cd" version = "7.9.0" timeout = 1500 namespace = "argocd" create_namespace = true...