Terraform Provider - Helm (K8s packages)
Find a file
John Houston 1cbf08f6a3
Some checks failed
build / Detect Go toolchain version (push) Has been cancelled
build / Parse version file (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
HashiCorp Copywrite / copywrite (push) Has been cancelled
tests / get_version_matrix (push) Has been cancelled
tests / unit_test (push) Has been cancelled
build / generate-metadata-file (push) Has been cancelled
build / upload-terraform-registry-manifest-artifact (push) Has been cancelled
build / Go darwin 386 build (push) Has been cancelled
build / Go freebsd 386 build (push) Has been cancelled
build / Go linux 386 build (push) Has been cancelled
build / Go windows 386 build (push) Has been cancelled
build / Go darwin amd64 build (push) Has been cancelled
build / Go freebsd amd64 build (push) Has been cancelled
build / Go linux amd64 build (push) Has been cancelled
build / Go windows amd64 build (push) Has been cancelled
build / Go freebsd arm build (push) Has been cancelled
build / Go linux arm build (push) Has been cancelled
build / Go darwin arm64 build (push) Has been cancelled
build / Go linux arm64 build (push) Has been cancelled
build / What's next? (push) Has been cancelled
tests / acc_test (push) Has been cancelled
v3.1.1 (#1724)
2025-11-17 12:26:55 -07:00
.changelog fix: Address "inconsistent result after apply" error by moving metadata recalc (#1713) 2025-11-06 10:29:39 -06:00
.github add PCI verbiage (#1628) 2025-05-14 18:42:38 -04: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.