mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-23 04:09:04 +00:00
[PR #10505/0f7cd547 backport][stable-11] arg_spec adjustments: modules [g-j]* (#10528)
arg_spec adjustments: modules [g-j]* (#10505)
* arg_spec adjustments: modules [g-j]*
* add changelog frag
(cherry picked from commit 0f7cd5473f)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
2dbcfaa650
commit
e7567e854b
39 changed files with 173 additions and 152 deletions
|
|
@ -142,12 +142,12 @@ def main():
|
|||
module = AnsibleModule(
|
||||
argument_spec=dict(
|
||||
script=dict(required=True, type="str"),
|
||||
url=dict(required=False, type="str", default="http://localhost:8080"),
|
||||
validate_certs=dict(required=False, type="bool", default=True),
|
||||
user=dict(required=False, type="str", default=None),
|
||||
password=dict(required=False, no_log=True, type="str", default=None),
|
||||
timeout=dict(required=False, type="int", default=10),
|
||||
args=dict(required=False, type="dict", default=None)
|
||||
url=dict(type="str", default="http://localhost:8080"),
|
||||
validate_certs=dict(type="bool", default=True),
|
||||
user=dict(type="str"),
|
||||
password=dict(no_log=True, type="str"),
|
||||
timeout=dict(type="int", default=10),
|
||||
args=dict(type="dict")
|
||||
)
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue