add git-crypt terraform

This commit is contained in:
viktorbarzin 2021-02-14 13:17:24 +00:00
parent 53fa7b58d2
commit c01eed321d
No known key found for this signature in database
GPG key ID: 0EB088298288D958
10 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"
}
}