No description
  • Go 94.3%
  • Shell 2.5%
  • HCL 1.8%
  • Makefile 1.4%
Find a file
OpenTofu Core Development Team abba1445b1 Apply GitHub workflow changes
2025-11-17 20:21:19 +00:00
.changelog fix: Address "inconsistent result after apply" error by moving metadata recalc (#1713) 2025-11-06 10:29:39 -06:00
.github Apply GitHub workflow changes 2025-11-17 20:21:19 +00:00
.release Update security scanner configuration (#1634) 2025-06-17 09:24:02 -06:00
_about Update documentation section of contribution guide (#1439) 2024-07-23 11:21:27 -04:00
docs Add resources attr (#1693) 2025-09-22 18:10:26 -05:00
examples fix(examples): update outdated examples to reflect current usage 2025-03-24 08:33:49 -05:00
helm fix: Address "inconsistent result after apply" error by moving metadata recalc (#1713) 2025-11-06 10:29:39 -06:00
META.d Update meta.d folder (#1250) 2023-09-21 13:53:35 -06:00
scripts Add support for ResourceIdentity to helm_release resource (#1625) 2025-05-16 15:12:56 -06:00
templates add support for literal type in set block (#1615) 2025-05-19 06:20:15 -06:00
tools [COMPLIANCE] Add Copyright and License Headers (#1047) 2023-03-07 10:47:01 +01:00
version v3.1.1 (#1724) 2025-11-17 12:26:55 -07:00
.copywrite.hcl Migrate to tfplugindocs structure (#1375) 2024-05-31 14:02:12 -05:00
.gitignore Update helm deps to current master (#261) 2019-04-24 19:53:54 +02:00
.markdownlinkcheck.json Migrate to tfplugindocs structure (#1375) 2024-05-31 14:02:12 -05:00
.markdownlint.yml Migrate to tfplugindocs structure (#1375) 2024-05-31 14:02:12 -05:00
CHANGELOG.md v3.1.1 (#1724) 2025-11-17 12:26:55 -07:00
CHANGELOG_GUIDE.md Add go-changelog (#882) 2022-06-14 15:24:18 -07:00
GNUmakefile Migrate to terraform plugin framework (#1379) 2025-01-16 13:08:36 -06:00
go.mod Add timeouts support (#1702) 2025-09-25 13:53:39 -05:00
go.sum Add timeouts support (#1702) 2025-09-25 13:53:39 -05:00
LICENSE [COMPLIANCE] Update MPL 2.0 LICENSE (#970) 2022-10-13 16:21:40 +02:00
main.go Migrate to terraform plugin framework (#1379) 2025-01-16 13:08:36 -06:00
README.md Update outdated README (#1604) 2025-03-24 09:58:41 -06:00
terraform-registry-manifest.json Add release GitHub Action (#832) 2022-03-11 13:43:43 -05:00

Terraform logo

Helm Provider for Terraform Actions StatusGitHub tag (latest SemVer)licenseGo Report Card

This is the Helm provider for Terraform.

This provider allows you to install and manage Helm Charts in your Kubernetes cluster using Terraform.

Contents

Requirements

  • Terraform v1.x.x
  • Go v1.22.x (to build the provider plugin)

Getting Started

This is a small example of how to install the nginx ingress controller chart. Please read the documentation for more information.

provider "helm" {
  kubernetes = {
    config_path = "~/.kube/config"
  }
}

resource "helm_release" "nginx_ingress" {
  name       = "nginx-ingress-controller"

  repository = "oci://registry-1.docker.io/bitnamicharts"
  chart      = "nginx-ingress-controller"

  set = [
    {
    name  = "service.type"
    value = "ClusterIP"
    }
  ]
}

Contributing

The Helm Provider for Terraform is the work of many contributors. We appreciate your help!

To contribute, please read the contribution guidelines. You may also report an issue. Once you've filed an issue, it will follow the issue lifecycle.

Also available are some answers to Frequently Asked Questions.