{"id":42307812,"url":"https://github.com/aigisuk/terraform-kubernetes-argocd","last_synced_at":"2026-07-11T12:00:52.084Z","repository":{"id":40332166,"uuid":"449531140","full_name":"aigisuk/terraform-kubernetes-argocd","owner":"aigisuk","description":"A Terraform Module to deploy ArgoCD (v2.6.6) on a Kubernetes Cluster via Helm","archived":false,"fork":false,"pushed_at":"2023-03-22T06:33:08.000Z","size":48,"stargazers_count":13,"open_issues_count":0,"forks_count":6,"subscribers_count":1,"default_branch":"release","last_synced_at":"2026-06-06T00:06:45.717Z","etag":null,"topics":["argocd","cicd","devops","gitops","helm","helm-chart","helm-charts","kubernetes","terraform","terraform-module"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/modules/aigisuk/argocd/kubernetes/latest","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aigisuk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-01-19T03:17:58.000Z","updated_at":"2024-05-23T15:21:55.000Z","dependencies_parsed_at":"2026-02-18T09:02:15.166Z","dependency_job_id":null,"html_url":"https://github.com/aigisuk/terraform-kubernetes-argocd","commit_stats":null,"previous_names":[],"tags_count":2,"template":true,"template_full_name":null,"purl":"pkg:github/aigisuk/terraform-kubernetes-argocd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aigisuk%2Fterraform-kubernetes-argocd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aigisuk%2Fterraform-kubernetes-argocd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aigisuk%2Fterraform-kubernetes-argocd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aigisuk%2Fterraform-kubernetes-argocd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aigisuk","download_url":"https://codeload.github.com/aigisuk/terraform-kubernetes-argocd/tar.gz/refs/heads/release","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aigisuk%2Fterraform-kubernetes-argocd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35361644,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-11T02:00:05.354Z","response_time":104,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["argocd","cicd","devops","gitops","helm","helm-chart","helm-charts","kubernetes","terraform","terraform-module"],"created_at":"2026-01-27T11:12:46.285Z","updated_at":"2026-07-11T12:00:52.036Z","avatar_url":"https://github.com/aigisuk.png","language":"HCL","funding_links":[],"categories":["HCL"],"sub_categories":[],"readme":"# Terraform Helm ArgoCD Module\nA Terraform module to deploy [ArgoCD](https://argoproj.github.io/cd/) on a Kubernetes Cluster using the [Helm Provider](https://registry.terraform.io/providers/hashicorp/helm).\n\n![Concept Flow Illustration](https://res.cloudinary.com/qunux/image/upload/v1642563762/terraform_kubernetes_argocd_mtze07.svg)\n\n## Default Admin Password\n\nIf the `admin_password` input variable is **not** set, the initial password for the `admin` user account is auto-generated and stored as clear text in the field `password` in a secret named `argocd-initial-admin-secret` in your Argo CD installation namespace. You can retrieve this password using `kubectl`[^1]:\n\n```\nkubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath=\"{.data.password}\" | base64 -d; echo\n```\n\n## Disable TLS on the ArgoCD API?\n\nMany ingress controllers require ArgoCD's API server be run with TLS disabled[^2]. Set the `insecure` variable to `true` to achieve this.\n\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|:----:|:-----:|:-----:|\n| release_name | Helm release name | string | `argocd` | no |\n| namespace | Namespace to install ArgoCD chart into (created if non-existent on target cluster) | string | `argocd` | no |\n| argocd_chart_version | Version of ArgoCD chart to install | string | `5.27.1` | no |\n| timeout_seconds | Helm chart deployment can sometimes take longer than the default 5 minutes. Set a custom timeout (secs) | number | `800` | no |\n| admin_password | Default Admin password | string | empty | no |\n| insecure | Disable TLS on the ArogCD API Server? | bool | `false` | no |\n| enable_dex | Enable Argo CD's Dex Server? | bool | `true` | no |\n| values_file | Name of the ArgoCD helm chart values file to use | string | `values.yaml` | no |\n\n\n[^1]: [ArgoCD Documentation - Login Using The CLI](https://argo-cd.readthedocs.io/en/stable/getting_started/#4-login-using-the-cli)\n[^2]: [ArgoCD Documentation - Ingress Configuration](https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faigisuk%2Fterraform-kubernetes-argocd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faigisuk%2Fterraform-kubernetes-argocd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faigisuk%2Fterraform-kubernetes-argocd/lists"}