Created
March 23, 2022 07:58
-
-
Save guivin/40d17ee87ad73082f3b94826e3fab9e3 to your computer and use it in GitHub Desktop.
providers.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | |
} | |
} | |
provider "kubernetes" { | |
config_path = pathexpand(var.kube_config) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment