Question - How to get this url <http://e9275192-sy...
# general
l
Question - How to get this url e9275192-syngentaplatform--87b5-1276037906.us-east-1.elb.amazonaws.com as variable? I think, I need to pass it for creating Route53 DNS records.
Copy code
const router = new k8s.networking.v1beta1.Ingress(
  'syngenta-platform',
  {........}
}
I got it using
Copy code
export let ingressUrl = router.status.apply((s) => s.loadBalancer.ingress[0].hostname);