{"id":13451665,"url":"https://github.com/hashicorp/terraform-provider-helm","last_synced_at":"2025-12-12T00:34:42.439Z","repository":{"id":37079143,"uuid":"95368512","full_name":"hashicorp/terraform-provider-helm","owner":"hashicorp","description":"Terraform Helm provider","archived":false,"fork":false,"pushed_at":"2025-04-23T12:03:20.000Z","size":183455,"stargazers_count":1020,"open_issues_count":131,"forks_count":384,"subscribers_count":42,"default_branch":"main","last_synced_at":"2025-04-25T06:02:45.213Z","etag":null,"topics":["helm","kubernetes","terraform","terraform-provider"],"latest_commit_sha":null,"homepage":"https://www.terraform.io/docs/providers/helm/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hashicorp.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-06-25T15:30:14.000Z","updated_at":"2025-04-14T17:01:37.000Z","dependencies_parsed_at":"2023-07-13T21:08:05.346Z","dependency_job_id":"bc4c70f0-4a0d-4f9e-9e83-905a47ea32f3","html_url":"https://github.com/hashicorp/terraform-provider-helm","commit_stats":{"total_commits":600,"total_committers":119,"mean_commits":5.042016806722689,"dds":0.8566666666666667,"last_synced_commit":"62d34d271933c35561118e925aeced1bee077987"},"previous_names":["terraform-providers/terraform-provider-helm","mcuadros/terraform-provider-helm"],"tags_count":67,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Fterraform-provider-helm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Fterraform-provider-helm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Fterraform-provider-helm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Fterraform-provider-helm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hashicorp","download_url":"https://codeload.github.com/hashicorp/terraform-provider-helm/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251561323,"owners_count":21609379,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["helm","kubernetes","terraform","terraform-provider"],"created_at":"2024-07-31T07:00:58.403Z","updated_at":"2025-12-12T00:34:42.377Z","avatar_url":"https://github.com/hashicorp.png","language":"Go","funding_links":[],"categories":["Go","Providers","terraform"],"sub_categories":["Hashicorp supported providers"],"readme":"\u003ca href=\"https://terraform.io\"\u003e\n    \u003cimg src=\".github/tf.png\" alt=\"Terraform logo\" title=\"Terraform\" align=\"left\" height=\"50\" /\u003e\n\u003c/a\u003e\n\n# Helm Provider for Terraform [![Actions Status](https://github.com/hashicorp/terraform-provider-helm/workflows/tests/badge.svg)](https://github.com/hashicorp/terraform-provider-helm/actions)[![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/hashicorp/terraform-provider-helm?label=release)](https://github.com/hashicorp/terraform-provider-helm/releases)[![license](https://img.shields.io/github/license/hashicorp/terraform-provider-helm.svg)]()[![Go Report Card](https://goreportcard.com/badge/github.com/hashicorp/terraform-provider-helm)](https://goreportcard.com/report/github.com/hashicorp/terraform-provider-helm)\n\n\n- [Documentation](https://www.terraform.io/docs/providers/helm/index.html)\n- [#terraform-providers in Kubernetes Slack](https://kubernetes.slack.com/messages/CJY6ATQH4) ([Sign up here](http://slack.k8s.io/))\n\nThis is the [Helm](https://github.com/kubernetes/helm) provider for [Terraform](https://www.terraform.io/).\n\nThis provider allows you to install and manage [Helm Charts](https://artifacthub.io/packages/search?kind=0\u0026sort=relevance\u0026page=1) in your Kubernetes cluster using Terraform.\n\n\n## Contents\n\n* [Requirements](#requirements)\n* [Getting Started](#getting-started)\n* [Contributing to the provider](#contributing)\n\n## Requirements\n\n-\t[Terraform](https://www.terraform.io/downloads.html) v1.x.x\n-\t[Go](https://golang.org/doc/install) v1.22.x (to build the provider plugin)\n\n## Getting Started\n\nThis is a small example of how to install the nginx ingress controller chart. Please read the [documentation](https://www.terraform.io/docs/providers/helm/index.html) for more\ninformation.\n\n```hcl\nprovider \"helm\" {\n  kubernetes = {\n    config_path = \"~/.kube/config\"\n  }\n}\n\nresource \"helm_release\" \"nginx_ingress\" {\n  name       = \"nginx-ingress-controller\"\n\n  repository = \"oci://registry-1.docker.io/bitnamicharts\"\n  chart      = \"nginx-ingress-controller\"\n\n  set = [\n    {\n    name  = \"service.type\"\n    value = \"ClusterIP\"\n    }\n  ]\n}\n```\n\n## Contributing\n\nThe Helm Provider for Terraform is the work of many contributors. We appreciate your help!\n\nTo contribute, please read the [contribution guidelines](_about/CONTRIBUTING.md). You may also [report an issue](https://github.com/hashicorp/terraform-provider-helm/issues/new/choose). Once you've filed an issue, it will follow the [issue lifecycle](_about/ISSUES.md).\n\nAlso available are some answers to [Frequently Asked Questions](_about/FAQ.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhashicorp%2Fterraform-provider-helm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhashicorp%2Fterraform-provider-helm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhashicorp%2Fterraform-provider-helm/lists"}