Skip to content

Instantly share code, notes, and snippets.

@guivin
Created March 23, 2022 07:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guivin/40d17ee87ad73082f3b94826e3fab9e3 to your computer and use it in GitHub Desktop.
Save guivin/40d17ee87ad73082f3b94826e3fab9e3 to your computer and use it in GitHub Desktop.
providers.tf
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