bouwroute-devops/infra/modules/vault/provider.tf

23 lines
326 B
HCL

terraform {
required_providers {
ssh = {
source = "loafoe/ssh"
version = "2.6.0"
}
kubectl = {
source = "gavinbunney/kubectl"
version = "1.14.0"
}
}
}
provider "helm" {
kubernetes {
config_path = var.config_path
}
}
provider "kubectl" {
config_path = var.config_path
}