12 lines
268 B
HCL
12 lines
268 B
HCL
output "endpoint" {
|
|
value = "${aws_eks_cluster.eks-cluster.endpoint}"
|
|
}
|
|
|
|
output "kubeconfig-certificate-authority-data" {
|
|
value = "${aws_eks_cluster.eks-cluster.certificate_authority.0.data}"
|
|
}
|
|
|
|
output "cluster_name" {
|
|
value = aws_eks_cluster.eks-cluster.name
|
|
}
|