16 lines
231 B
HCL
16 lines
231 B
HCL
terraform {
|
|
required_version = ">= 1.10.0"
|
|
|
|
required_providers {
|
|
helm = {
|
|
source = "hashicorp/helm"
|
|
version = "3.1.1"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "helm" {
|
|
kubernetes = {
|
|
config_path = var.kubeconfig_path
|
|
}
|
|
}
|