mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02: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),
|
||||
authorize=dict(default=False, type='bool'),
|
||||
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'),
|
||||
provider=dict(type='dict')
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue