Skip to content

Commit

Permalink
Merge pull request #626 from terraform-routeros/vaerh/issue620
Browse files Browse the repository at this point in the history
fix(bridge_filter): Missing field in interface_bridge_filter
  • Loading branch information
vaerh authored Dec 30, 2024
2 parents e17d606 + 63474c8 commit 5878ad3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions routeros/resource_interface_bridge_filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5878ad3

Please sign in to comment.