|
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
|
|
}
|