mirror of
https://github.com/hashicorp/terraform-provider-helm.git
synced 2026-02-19 02:29:26 -05:00
9 lines
275 B
HCL
9 lines
275 B
HCL
provider "helm" {
|
|
kubernetes = {
|
|
host = "https://cluster_endpoint:port"
|
|
|
|
client_certificate = file("~/.kube/client-cert.pem")
|
|
client_key = file("~/.kube/client-key.pem")
|
|
cluster_ca_certificate = file("~/.kube/cluster-ca-cert.pem")
|
|
}
|
|
}
|