ArgoCD
Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes that automatically syncs applications from a Git repository to a cluster.
Example Usage
resource "apono_integration" "argocd-integration" {
name = "ArgoCD"
type = "argocd"
connector_id = "apono-connector-id"
connected_resource_types = ["argocd-global-role"]
metadata = {
k8s_server_url = "<Kubernetes Server URL>"
argocd_ui_url = "<ArgoCD UI URL>"
k8s_certificate_authority = "<Kubernetes Certificate Authority>"
argo_namespace = "<ArgoCD Namespace>"
}
kubernetes_secret = {
name = "name_template_value"
namespace = "namespace_template_value"
}
}
Schema
type
argocdconnected_resource_types
List of resource types to sync.
Integration Config
k8s_server_url
(Optional | String) Kubernetes Server URLargocd_ui_url
(Required | String) ArgoCD UI URLk8s_certificate_authority
(Optional | String) Kubernetes Certificate Authorityargo_namespace
(Required | String) ArgoCD NamespaceDefault value:
argocd
Last updated
Was this helpful?