Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
Fix SVI
Browse files Browse the repository at this point in the history
  • Loading branch information
jpkrajewski committed Jul 2, 2024
1 parent 6ae1fef commit e2802f5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
VrrpIPv4SecondaryAddress,
)
from catalystwan.utils.config_migration.converters.feature_template.base import FTConverter
from catalystwan.utils.config_migration.steps.constants import LAN_VPN_SVI
from catalystwan.utils.config_migration.steps.constants import LAN_VPN_SVI, WAN_VPN_SVI


class InterfaceSviConverter(FTConverter):
"""
A class for converting template values into a InterfaceSviParcel object.
"""

supported_template_types = (LAN_VPN_SVI,)
supported_template_types = (LAN_VPN_SVI, WAN_VPN_SVI)

delete_keys = (
"if_name",
Expand Down

0 comments on commit e2802f5

Please sign in to comment.