8 lines
230 B
HCL
8 lines
230 B
HCL
resource "helm_release" "argocd" {
|
|
name = "argocd"
|
|
chart = "argo-cd"
|
|
repository = "https://argoproj.github.io/argo-helm"
|
|
version = "7.7.0"
|
|
timeout = "1500"
|
|
namespace = kubernetes_namespace.argocd.id
|
|
} |