6 lines
226 B
HCL
6 lines
226 B
HCL
provider "kubernetes" {
|
|
host = var.eks_cluster_endpoint
|
|
cluster_ca_certificate = base64decode(var.eks_cluster_certificate_authority_data)
|
|
token = data.aws_eks_cluster_auth.self.token
|
|
}
|