add git-crypt terraform

This commit is contained in:
viktorbarzin 2021-02-14 13:17:24 +00:00
parent b51d58a389
commit f68fd91686
8 changed files with 112 additions and 54 deletions

View file

@ -44,12 +44,12 @@ data "terraform_remote_state" "foo" {
depends_on = [module.kubernetes_cluster]
}
provider "kubernetes" {
# config_path = "~/.kube/config"
config_path = var.prod ? "" : "~/.kube/config"
}
provider "helm" {
kubernetes {
# config_path = "~/.kube/config"
config_path = var.prod ? "" : "~/.kube/config"
}
}