terraform { backend "local" { path = "10-devops.tfstate" } } variable "kubectx" { type = string } provider "kubernetes" { config_context = var.kubectx } provider "helm" { kubernetes { config_context = var.kubectx } }