12 lines
377 B
HCL
12 lines
377 B
HCL
provider "helm" {
|
|
# Several Kubernetes authentication methods are possible: https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs#authentication
|
|
kubernetes {
|
|
config_path = pathexpand(var.kube_config)
|
|
config_context = var.kube_context
|
|
}
|
|
}
|
|
|
|
provider "kubernetes" {
|
|
config_path = pathexpand(var.kube_config)
|
|
config_context = var.kube_context
|
|
} |