summaryrefslogtreecommitdiff
path: root/plugins/modules
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/modules')
-rw-r--r--plugins/modules/vyos_firewall_rules.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/modules/vyos_firewall_rules.py b/plugins/modules/vyos_firewall_rules.py
index 7213abd5..9045a5c6 100644
--- a/plugins/modules/vyos_firewall_rules.py
+++ b/plugins/modules/vyos_firewall_rules.py
@@ -90,8 +90,10 @@ options:
- reject (Drop and notify source if no prior rules are hit)
- accept (Accept if no prior rules are hit)
- jump (Jump to another rule-set, 1.4+)
+ - return (Return from the current chain and continue at the next rule of the last chain, 1.4+)
+ - continue (Continue parsing next rule, 1.4+)
type: str
- choices: ['drop', 'reject', 'accept', 'jump']
+ choices: ['drop', 'reject', 'accept', 'jump', 'return', 'continue']
default_jump_target:
description:
- Default jump target if the default action is jump.