Skip to content

shakhovski/terraform-provider-helm

 
 

Repository files navigation

Helm Provider for Terraform Actions Status GitHub tag (latest SemVer) license Go Report Card

Terraform logo

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 v0.12.x
  • Go v1.16.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 = "https://charts.bitnami.com/bitnami"
  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.

Packages

No packages published

Languages

  • Go 88.4%
  • Shell 6.0%
  • Makefile 2.8%
  • HCL 1.9%
  • HTML 0.9%