Skip to content

Commit

Permalink
Update python-avd/pyavd/_eos_designs/structured_config/network_servic…
Browse files Browse the repository at this point in the history
…es/ipv6_static_routes.py
  • Loading branch information
Vibhu-gslab committed Feb 10, 2025
1 parent bf9b191 commit fc02fd5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ def ipv6_static_routes(self: AvdStructuredConfigNetworkServicesProtocol) -> None
for tenant in self.shared_utils.filtered_tenants:
for vrf in tenant.vrfs:
for static_route in vrf.ipv6_static_routes:
static_route_obj = static_route._cast_as(EosCliConfigGen.Ipv6StaticRoutesItem, ignore_extra_keys=True)
static_route_obj.vrf = vrf.name
self.structured_config.ipv6_static_routes.append_unique(static_route_obj)
static_route_items = static_route._cast_as(EosCliConfigGen.Ipv6StaticRoutesItem, ignore_extra_keys=True)
static_route_items.vrf = vrf.name
self.structured_config.ipv6_static_routes.append_unique(static_route_items)

0 comments on commit fc02fd5

Please sign in to comment.