I'm trying to set up an elasticsearch service to bind to the elastic IP assigned to the instance it's running on - but can't figure out the correct way.
I've tried:
network.host = [local, "52.xxx.xxx.xxx"]
network.host = 52.xxx.xxx.xxx
network.host = 0.0.0.0
When starting with the elastic IP the service throws an unable to bind exception on restart and closes. When starting with 0.0.0.0 it stasrts but binds to the internal IP of the instance 10.0.0.x
So what should I be setting this to to corretly bind to the external IP?