From 9d46a5503163b60534d63f414ddfd1b1a50ea631 Mon Sep 17 00:00:00 2001 From: Vaerh Date: Wed, 7 Aug 2024 09:18:58 +0300 Subject: [PATCH] fix(firewall_raw): "no track" action in routeros_ip_firewall_raw needs tweaking Fixes #529 --- routeros/resource_ip_firewall_raw.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routeros/resource_ip_firewall_raw.go b/routeros/resource_ip_firewall_raw.go index 1d8ca55c..faddff45 100644 --- a/routeros/resource_ip_firewall_raw.go +++ b/routeros/resource_ip_firewall_raw.go @@ -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": {