Open
Description
Current Behavior
Building this on a Macbook, installed all components using brew.
Following the tutorial terraform apply
stucks to this error:
mxd git:(main) terraform apply
╷
│ Error: Unsupported block type
│
│ on main.tf line 40, in provider "helm":
│ 40: kubernetes {
│
│ Blocks of type "kubernetes" are not expected here. Did you mean to define
│ argument "kubernetes"? If so, use the equals sign to assign it a value.
Fixed by setting the helm version in main.tf
to 2.17.0.
terraform {
required_providers {
helm = {
source = "hashicorp/helm"
version = "2.17.0"
}
Expected Behavior
Set the helm version to 2 or upgrade the code to work with helm 3.
Steps To Reproduce
Just follow the tutorial on a clean system.