Retour au classement
Helm Provider for Terraform
Terraform Helm provider
terraform-providerhelmterraformkubernetes
Indicateurs clés
Croissance des étoiles
Étoiles
1.1k
Forks
431
Croissance hebdomadaire
—
Issues
89
5001k
juin 2017déc. 2018juin 2020déc. 2021juil. 2023janv. 2025juil. 2026
ArtefactsGo Modules
go get github.com/hashicorp/terraform-provider-helmREADME
Helm Provider for Terraform 



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
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.
Dépôts similaires