mirror of
https://github.com/terraform-aws-modules/terraform-aws-eks.git
synced 2025-09-09 19:32:58 +08:00
10 lines
248 B
Terraform
10 lines
248 B
Terraform
output "cluster_endpoint" {
|
|
description = "Endpoint for EKS controlplane."
|
|
value = "${module.eks.cluster_endpoint}"
|
|
}
|
|
|
|
output "cluster_security_group_ids" {
|
|
description = "."
|
|
value = "${module.eks.cluster_security_group_ids}"
|
|
}
|