8 lines
237 B
HCL
8 lines
237 B
HCL
provider "helm" {
|
|
kubernetes {
|
|
host = var.cluster_endpoint
|
|
cluster_ca_certificate = base64decode(var.cluster_certificate_authority_data)
|
|
token = data.aws_eks_cluster_auth.self.token
|
|
}
|
|
}
|