mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-04 05:04:22 -07:00
Fix redundant args for 'value' and 'path'
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
6e1013568b
commit
8177c0ae98
1 changed files with 2 additions and 2 deletions
|
@ -480,8 +480,8 @@ def main():
|
|||
state=dict(default='present', choices=['present', 'absent', 'read']),
|
||||
key=dict(required=True, type='str', no_log=False),
|
||||
# Converted to str below after special handling of bool.
|
||||
value=dict(required=False, default=None, type='raw'),
|
||||
path=dict(required=False, default=None, type='path'),
|
||||
value=dict(type='raw'),
|
||||
path=dict(type='path'),
|
||||
),
|
||||
supports_check_mode=True,
|
||||
required_if=[
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue