Hi@akhtar,
In your Terraform script, you can output parameter to print any result in your command line. In your case, you can get the IP using the below-given example.
output "load_balancer_ip" {
value = "${kubernetes_service.example.load_balancer_ingress.0.ip}"
}