Source: guillaume-vincent.medium.com

Terraform Helm = ❤️
If you have already used IaC (Infrastructure as Code) you have maybe tried to manage cloud resources with Terraform. You might even end up dealing with Kubernetes as yet another cloud resource into your existing infrastructure base code. Since Helm 3 has been released it is much easier to integrate with Terraform since Tiller, the server portion of Helm running inside of your Kubernetes cluster is gone. First of all, we create a file to group all our variables.

As we want to manage the namespace we have to define a separated Kubernetes provider in addition to the one in helm provider.

Related Articles