mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-04 07:24:00 -07:00
arg_spec adjustments: modules [g-j]* (#10505)
* arg_spec adjustments: modules [g-j]* * add changelog frag
This commit is contained in:
parent
84b5d38c51
commit
0f7cd5473f
39 changed files with 173 additions and 152 deletions
|
@ -124,10 +124,10 @@ def main():
|
|||
argument_spec=dict(
|
||||
repository=dict(type='str', required=True, aliases=["repo"]),
|
||||
user=dict(type='str', required=True),
|
||||
password=dict(type='str', required=False, no_log=True),
|
||||
token=dict(type='str', required=False, no_log=True),
|
||||
password=dict(type='str', no_log=True),
|
||||
token=dict(type='str', no_log=True),
|
||||
github_url=dict(
|
||||
type='str', required=False, default="https://api.github.com")),
|
||||
type='str', default="https://api.github.com")),
|
||||
mutually_exclusive=(('password', 'token'), ),
|
||||
required_one_of=(("password", "token"), ),
|
||||
supports_check_mode=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue