mirror of
https://github.com/hashicorp/terraform-provider-helm.git
synced 2026-06-10 17:10:06 -04:00
11 lines
No EOL
334 B
HCL
11 lines
No EOL
334 B
HCL
provider "helm" {
|
|
kubernetes = {
|
|
host = var.cluster_endpoint
|
|
cluster_ca_certificate = base64decode(var.cluster_ca_cert)
|
|
exec = {
|
|
api_version = "client.authentication.k8s.io/v1beta1"
|
|
args = ["eks", "get-token", "--cluster-name", var.cluster_name]
|
|
command = "aws"
|
|
}
|
|
}
|
|
} |