infrastructure/base/modules/aws/bastion/outputs.tf
output "bastion_hostname" {
value = aws_instance.bastion.public_dns
description = "Bastion hostname for SSH access."
}
output "bastion_security_group" {
value = aws_security_group.bastion_security_group
description = "Security group of the bastion"
}
output "eks_manager_role" {
value = aws_iam_role.eks_manager
description = "EKS manager role"
}