avx-pmarie-aws-infra/modules/eks-cert-manager/provider.tf

8 lines
237 B
Terraform
Raw Permalink Normal View History

2022-07-12 22:32:18 +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
}
}