15 lines
364 B
HCL
15 lines
364 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
|
|
}
|
|
|
|
output "cluster_oidc" {
|
|
value = "${aws_eks_cluster.eks-cluster.identity[0].oidc[0].issuer}"
|
|
} |