avx-pmarie-aws-infra/modules/eks-ingress-controller/provider.tf

8 lines
237 B
Terraform
Raw Normal View History

2022-07-01 14:12:11 +02:00
provider "helm" {
kubernetes {
host = var.cluster_endpoint
cluster_ca_certificate = base64decode(var.cluster_certificate_authority_data)
token = data.aws_eks_cluster_auth.self.token
}
}