output "eks_cluster_name" { description = "EKS cluster name" value = module.eks.cluster_name } output "eks_cluster_endpoint" { description = "EKS cluster API endpoint" value = module.eks.cluster_endpoint } output "eks_cluster_version" { description = "EKS cluster Kubernetes version" value = module.eks.cluster_version } output "eks_cluster_arn" { description = "EKS cluster ARN" value = module.eks.cluster_arn } output "eks_cluster_certificate_authority" { description = "Base64 encoded certificate data required to communicate with the cluster" value = module.eks.cluster_certificate_authority sensitive = true } output "vpc_id" { description = "VPC ID" value = module.vpc.vpc_id } output "private_subnet_ids" { description = "Private subnet IDs" value = module.vpc.private_subnet_ids } output "public_subnet_ids" { description = "Public subnet IDs" value = module.vpc.public_subnet_ids }