I'm working on a terraform module to create a GKE cluster. The same module invokes a provisioner that performs a helm install
of an application.
The helm chart creates load balancer. The load balancer is not know to the terraform module so that the assigned IP address can't be reused in the module.
Question:
How can I use the IP of the load balancer to create DNS entries and get certificates?
I think this is no exotic use case but I haven't yet found a decent way to achieve this.