From 733196103897a1d84d242324ddcf96e783320329 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 21 Apr 2021 07:41:32 -0700 Subject: [PATCH] update docs with new examples that have `to_service` always existing. --- jc/parsers/ufw.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jc/parsers/ufw.py b/jc/parsers/ufw.py index b43e3bbe..6762ccd2 100644 --- a/jc/parsers/ufw.py +++ b/jc/parsers/ufw.py @@ -64,6 +64,7 @@ Examples: "to_transport": "tcp", "to_start_port": 22, "to_end_port": 22, + "to_service": null, "to_ip": "0.0.0.0", "to_ip_prefix": "0", "from_ip": "0.0.0.0", @@ -83,6 +84,7 @@ Examples: "to_transport": "tcp", "to_start_port": 22, "to_end_port": 22, + "to_service": null, "to_ip": "::", "to_ip_prefix": "0", "from_ip": "::", @@ -173,6 +175,7 @@ Examples: "to_transport": "tcp", "to_start_port": "22", "to_end_port": "22", + "to_service": null, "to_ip": "0.0.0.0", "to_ip_prefix": "0", "from_ip": "0.0.0.0", @@ -192,6 +195,7 @@ Examples: "to_transport": "tcp", "to_start_port": "22", "to_end_port": "22", + "to_service": null, "to_ip": "::", "to_ip_prefix": "0", "from_ip": "::",