diff options
author | GomathiselviS <gomathiselvi@gmail.com> | 2022-03-01 11:01:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-01 16:01:04 +0000 |
commit | 2299c492ca285f227cdb2043c9602e58ba55bf72 (patch) | |
tree | 35bde410f5940aea7337d34808c844e240278ec8 /plugins/modules | |
parent | b28632c3e581371f3b0d670d376ab409a4b8fa0e (diff) | |
download | vyos-ansible-collection-2299c492ca285f227cdb2043c9602e58ba55bf72.tar.gz vyos-ansible-collection-2299c492ca285f227cdb2043c9602e58ba55bf72.zip |
Change parameter 'disabled' to 'disable' in test_vyos_firewall_rules.py (#240)
Change parameter 'disabled' to 'disable' in test_vyos_firewall_rules.py
SUMMARY
Fixes #239
ISSUE TYPE
Bugfix Pull Request
COMPONENT NAME
ADDITIONAL INFORMATION
Reviewed-by: Nilashish Chakraborty <nilashishchakraborty8@gmail.com>
Reviewed-by: Sagar Paul <sagpaul@redhat.com>
Reviewed-by: GomathiselviS <None>
Reviewed-by: Rohit Thakur <rohitthakur2590@outlook.com>
Reviewed-by: None <None>
Diffstat (limited to 'plugins/modules')
-rw-r--r-- | plugins/modules/vyos_firewall_rules.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/modules/vyos_firewall_rules.py b/plugins/modules/vyos_firewall_rules.py index 6df6892..aaef8a1 100644 --- a/plugins/modules/vyos_firewall_rules.py +++ b/plugins/modules/vyos_firewall_rules.py @@ -144,10 +144,11 @@ options: - The whole list can also be "negated" using '!'. - For example:'!22,telnet,http,123,1001-1005'. type: str - disabled: + disable: description: - Option to disable firewall rule. type: bool + aliases: ["disabled"] fragment: description: - IP fragment match. |