It would be incredibly handy to be able to list the ALLOC_IDs of running apps via DNS.
Currently, you can get the public IPv6 addresses of all running VMs in an app via dig global.<appname>.internal AAAA. However, there’s no way to list the Allocation IDs of running instances via DNS.
This would be helpful for certain apps (e.g. CockroachDB is much friendlier with hostnames than raw addresses) because then you could list them and compose them into <alloc_id>.vm.<appname>.internal addresses.
For example: dig global.<appname>.internal TXT could list the Allication IDs, seperated by commas (similar to what happens now with regions.<appname>.internal
There is something like that which might be what you’re after but it would require a bit of processing.
vms.<appname>.internal is a TXT record that contains a comma separated list of each VM’s alloc_id, region, and a third code (which I’m unsure about what it represents, maybe stands for datacenter).
e.g. "11112222 syd dc,33334444 nrt dc,55556666 yyz dc"
Yeah, this would be my default answer to making allocids available in DNS — you’re going to have to parse DNS either way, so you might as well parse this.