10 lines
232 B
HCL
10 lines
232 B
HCL
resource "helm_release" "argocd" {
|
|
name = "argo-cd"
|
|
namespace = "argocd"
|
|
create_namespace = true
|
|
chart = "argo-cd"
|
|
version = "8.3.1"
|
|
repository = "https://argoproj.github.io/argo-helm"
|
|
timeout = 120
|
|
}
|