outputs.tf 367 B

1234567891011121314
  1. output "cluster_name" {
  2. description = "EKS cluster name."
  3. value = module.eks.cluster_name
  4. }
  5. output "cluster_endpoint" {
  6. description = "EKS cluster endpoint."
  7. value = module.eks.cluster_endpoint
  8. }
  9. output "configure_kubectl" {
  10. description = "Command to configure kubectl for this example cluster."
  11. value = module.eks.configure_kubectl
  12. }