ovh: also remove deprecated attrs here

This commit is contained in:
Charlotte Van Petegem 2024-06-03 21:12:42 +02:00
parent c567e7daf6
commit 1434aa07d9
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -38,10 +38,8 @@
gateway = [ publicIPV4.gateway ]; gateway = [ publicIPV4.gateway ];
routes = [ routes = [
{ {
routeConfig = {
Gateway = publicIPV6.gateway; Gateway = publicIPV6.gateway;
GatewayOnLink = true; GatewayOnLink = true;
};
} }
]; ];
dns = [ dns = [
@ -56,7 +54,7 @@
matchConfig = { Name = "eno4"; }; matchConfig = { Name = "eno4"; };
address = [ "${internalIPV4}/16" ]; address = [ "${internalIPV4}/16" ];
routes = [ routes = [
{ routeConfig = { Destination = "${internalIPV4}/16"; }; } { Destination = "${internalIPV4}/16"; }
]; ];
}; };
}; };