Skip to content

Commit

Permalink
fix(no-release): [Backward compatibility] routeros_ip_firewall_filter…
Browse files Browse the repository at this point in the history
… NOT WORKING AS EXPECTED

Fixes #418
  • Loading branch information
vaerh committed Apr 15, 2024
1 parent 555833e commit cd55360
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions routeros/resource_ip_firewall_filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ func ResourceIPFirewallFilter() *schema.Resource {
"address_list_timeout": {
Type: schema.TypeString,
Optional: true,
Default: "none-dynamic",
Description: "Time interval after which the address will be removed from the address list specified by " +
"address-list parameter. Used in conjunction with add-dst-to-address-list or add-src-to-address-list " +
"actions.",
Expand Down Expand Up @@ -226,10 +225,10 @@ func ResourceIPFirewallFilter() *schema.Resource {
"rate[/time],burst:mode.",
},
"log": {
Type: schema.TypeBool,
Optional: true,
Default: false,
Description: "Add a message to the system log.",
Type: schema.TypeBool,
Optional: true,
Description: "Add a message to the system log.",
DiffSuppressFunc: AlwaysPresentNotUserProvided,
},
"log_prefix": {
Type: schema.TypeString,
Expand Down

0 comments on commit cd55360

Please sign in to comment.