Skip to content

Commit

Permalink
fix(firewall_raw): "no track" action in routeros_ip_firewall_raw need…
Browse files Browse the repository at this point in the history
…s tweaking

Fixes #529
  • Loading branch information
vaerh committed Aug 7, 2024
1 parent df190d6 commit 9d46a55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routeros/resource_ip_firewall_raw.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func ResourceIPFirewallRaw() *schema.Resource {
Description: "Action to take if a packet is matched by the rule",
ValidateFunc: validation.StringInSlice([]string{
"accept", "add-dst-to-address-list", "add-src-to-address-list", "drop",
"jump", "log", "no-track", "passthrough", "return",
"jump", "log", "notrack", "passthrough", "return",
}, false),
},
"address_list": {
Expand Down

0 comments on commit 9d46a55

Please sign in to comment.