Skip to content

Commit

Permalink
fix: Wrong field names in example files (#219)
Browse files Browse the repository at this point in the history
Fixes #218
  • Loading branch information
vaerh committed May 27, 2023
1 parent 5128fae commit b0105ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/resources/routeros_ip_firewall_mangle/resource.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
resource "routeros_ip_firewall_mangle" "rule" {
action = "change-mss"
chain = "forward"
out-interface = "pppoe-out"
out_interface = "pppoe-out"
protocol = "tcp"
tcp-flags = "syn"
new-mss = "1130"
tcp-mss = "1301-65535"
tcp_flags = "syn"
new_mss = "1130"
tcp_mss = "1301-65535"
}

0 comments on commit b0105ef

Please sign in to comment.