mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-26 14:41:23 -07:00
fixes ansible-modules-code#3250
Sets the default value for transport to 'cli'
This commit is contained in:
parent
c039ac524d
commit
ace0c9c5c2
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ NET_COMMON_ARGS = dict(
|
||||||
password=dict(no_log=True),
|
password=dict(no_log=True),
|
||||||
authorize=dict(default=False, type='bool'),
|
authorize=dict(default=False, type='bool'),
|
||||||
auth_pass=dict(no_log=True),
|
auth_pass=dict(no_log=True),
|
||||||
transport=dict(choices=['cli', 'eapi']),
|
transport=dict(default='cli', choices=['cli', 'eapi']),
|
||||||
use_ssl=dict(default=True, type='bool'),
|
use_ssl=dict(default=True, type='bool'),
|
||||||
provider=dict(type='dict')
|
provider=dict(type='dict')
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue