Skip to content

Commit

Permalink
change sdwan_transport_wan_vpn_interface_ethernet_feature_associateX_…
Browse files Browse the repository at this point in the history
…feature resources names
  • Loading branch information
tzarski0 committed Jan 27, 2025
1 parent 6ff1214 commit 910df4a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- add support for sdwan_policy_object_as_path_list resource
- add support for sdwan_policy_object_standard_community_list resource
- fix ipv4_dhcp_helpers_variable not being set when configuring sdwan_transport_management_vpn_interface_ethernet_feature and sdwan_transport_wan_vpn_interface_ethernet_feature
- change sdwan_transport_wan_vpn_interface_ethernet_feature_associateX_feature resources names to match name logic

## 1.0.0

Expand Down
8 changes: 4 additions & 4 deletions sdwan_features_transport.tf
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ resource "sdwan_transport_wan_vpn_interface_ethernet_feature_associate_tracker_f
]
]
])
: "${interface_item.profile.name}-wan_vpn-${interface_item.interface.name}-associate_tracker" => interface_item
: "${interface_item.profile.name}-wan_vpn-${interface_item.interface.name}-tracker" => interface_item
if try(interface_item.interface.ipv4_tracker, null) != null
}
feature_profile_id = sdwan_transport_feature_profile.transport_feature_profile[each.value.profile.name].id
Expand All @@ -609,7 +609,7 @@ resource "sdwan_transport_wan_vpn_interface_ethernet_feature_associate_tracker_g
]
]
])
: "${interface_item.profile.name}-wan_vpn-${interface_item.interface.name}-associate_tracker_group" => interface_item
: "${interface_item.profile.name}-wan_vpn-${interface_item.interface.name}-trackergroup" => interface_item
if try(interface_item.interface.ipv4_tracker_group, null) != null
}
feature_profile_id = sdwan_transport_feature_profile.transport_feature_profile[each.value.profile.name].id
Expand All @@ -631,7 +631,7 @@ resource "sdwan_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_trac
]
]
])
: "${interface_item.profile.name}-wan_vpn-${interface_item.interface.name}-associate_ipv6_tracker" => interface_item
: "${interface_item.profile.name}-wan_vpn-${interface_item.interface.name}-ipv6_tracker" => interface_item
if try(interface_item.interface.ipv6_tracker, null) != null
}
feature_profile_id = sdwan_transport_feature_profile.transport_feature_profile[each.value.profile.name].id
Expand All @@ -653,7 +653,7 @@ resource "sdwan_transport_wan_vpn_interface_ethernet_feature_associate_ipv6_trac
]
]
])
: "${interface_item.profile.name}-wan_vpn-${interface_item.interface.name}-associate_ipv6_tracker_group" => interface_item
: "${interface_item.profile.name}-wan_vpn-${interface_item.interface.name}-ipv6_trackergroup" => interface_item
if try(interface_item.interface.ipv6_tracker_group, null) != null
}
feature_profile_id = sdwan_transport_feature_profile.transport_feature_profile[each.value.profile.name].id
Expand Down

0 comments on commit 910df4a

Please sign in to comment.