3886f285f8
Co-authored-by: Francesco Renzi <rentziass@gmail.com>
14 lines
350 B
Terraform
14 lines
350 B
Terraform
output "cluster_endpoint" {
|
|
description = "Endpoint for EKS control plane"
|
|
value = module.eks.cluster_endpoint
|
|
}
|
|
|
|
output "cluster_security_group_id" {
|
|
description = "Security group ids"
|
|
value = module.eks.cluster_security_group_id
|
|
}
|
|
|
|
output "cluster_name" {
|
|
description = "Cluster Name"
|
|
value = module.eks.cluster_name
|
|
} |