Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Terraform helm module fix deprecated version declaration #1994

Merged
merged 11 commits into from
Feb 13, 2021
11 changes: 9 additions & 2 deletions install/terraform/modules/helm3/helm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,16 @@
#
# This is a Helm 3.x module, and is the module that should be actively used.
#

terraform {
required_version = ">= 0.12.6"
required_providers {
helm = {
version = "~> 1.2"
source = "hashicorp/helm"
}
}
}
provider "helm" {
version = "~> 1.2"
kubernetes {
load_config_file = false
host = var.host
Expand Down