mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-29 08:01:24 -07:00
Scrub choices=BOOLEANS from remaining core module references. Correct form in argument_spec is type='dict'.
This commit is contained in:
parent
3312099e70
commit
0e8c7b1c03
8 changed files with 14 additions and 18 deletions
|
@ -165,7 +165,7 @@ def main():
|
|||
default = dict(default=None, aliases=['policy'], choices=['allow', 'deny', 'reject']),
|
||||
logging = dict(default=None, choises=['on', 'off', 'low', 'medium', 'high', 'full']),
|
||||
direction = dict(default=None, choises=['in', 'incoming', 'out', 'outgoing']),
|
||||
delete = dict(default=False, choices=BOOLEANS),
|
||||
delete = dict(default=False, type='bool'),
|
||||
insert = dict(default=None),
|
||||
rule = dict(default=None, choices=['allow', 'deny', 'reject', 'limit']),
|
||||
interface = dict(default=None, aliases=['if']),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue