What are you trying to do?
I am trying to put some IPs of my managed databases under the ACL controls using a subnet relay. The Database IP (internal IPv4) however changes from time to time, this means that I need to go manually update the ACL to reference the new internal IPv4 address.
How should we solve this?
Support using a DNS name instead of an IP address in the ACL file.
Replacing:
{
...
"Hosts": {
"dev-pgsql-database": "10.118.48.3",
}
...
With:
{
...
"Hosts": {
"dev-pgsql-database": "my.host.dns.name",
}
...
}
Would make my life a lot easier.
What is the impact of not solving this?
Manual work, and DB connections not working for my team until I can fix the issue.
Anything else?
No response
What are you trying to do?
I am trying to put some IPs of my managed databases under the ACL controls using a subnet relay. The Database IP (internal IPv4) however changes from time to time, this means that I need to go manually update the ACL to reference the new internal IPv4 address.
How should we solve this?
Support using a DNS name instead of an IP address in the ACL file.
Replacing:
{ ... "Hosts": { "dev-pgsql-database": "10.118.48.3", } ...With:
{ ... "Hosts": { "dev-pgsql-database": "my.host.dns.name", } ... }Would make my life a lot easier.
What is the impact of not solving this?
Manual work, and DB connections not working for my team until I can fix the issue.
Anything else?
No response