Skip to content

runoncloud/terraform-kubernetes-argocd

Repository files navigation

Terraform Argo CD Module

This modules make it easy to set up a fresh installation of Argo CD in your Kubernetes cluster.

Compatibility

This module is meant for use with Terraform >= 0.13.0 If you haven't upgraded.

If you want to use Terraform 0.12, use the tag v.1.0.0. Note that the version v.1.0.0 only support ArgoCD 1.5.5 while v1.1+ support all versions of ArgoCD.

Dependencies

This module use the k8s Terraform provider from Banzai Cloud to manages Kubernetes manifests . See the documentation to see how to install it.

Usage

See the examples folder.

module "argo_cd" {
  source = "runoncloud/argocd/kubernetes"

  namespace       = "argocd"
  argo_cd_version = "1.8.7"
}