From 63474c834b520591602299e13ae0f7c783367dc8 Mon Sep 17 00:00:00 2001 From: Vaerh Date: Mon, 30 Dec 2024 21:08:30 +0300 Subject: [PATCH] fix(bridge_filter): Missing field in interface_bridge_filter Fixes #620 --- routeros/resource_interface_bridge_filter.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/routeros/resource_interface_bridge_filter.go b/routeros/resource_interface_bridge_filter.go index 87d01e67..b68bc748 100644 --- a/routeros/resource_interface_bridge_filter.go +++ b/routeros/resource_interface_bridge_filter.go @@ -249,6 +249,13 @@ func ResourceInterfaceBridgeFilter() *schema.Resource { Description: "Match packets with a certain packet mark.", ValidateFunc: validation.StringInSlice([]string{"broadcast", "host", "multicast", "other-host"}, true), }, + "passthrough": { + Type: schema.TypeBool, + Optional: true, + Description: "Whether to let the packet to pass further (like action passthrough) into the " + + "filter or not (property only valid some actions).", + DiffSuppressFunc: AlwaysPresentNotUserProvided, + }, KeyPlaceBefore: PropPlaceBefore, "src_address": { Type: schema.TypeString,