mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 03:00:23 -07:00
adds provider argument to openswitch shared module
Adds new argument `provider` to the openswitch shared module. The provider argument can pass all openswitch connection arguments as a dict object. This update includes adding the provider argument to the openswitch doc fragment
This commit is contained in:
parent
33d390fb58
commit
7640eca368
2 changed files with 31 additions and 14 deletions
|
@ -62,5 +62,21 @@ options:
|
|||
required: true
|
||||
default: ssh
|
||||
choices: ['ssh', 'cli', 'rest']
|
||||
use_ssl:
|
||||
description:
|
||||
- Configures the I(transport) to use SSL if set to true only when the
|
||||
I(transport) argument is configured as rest. If the transport
|
||||
argument is not rest, this value is ignored
|
||||
required: false
|
||||
default: true
|
||||
choices: BOOLEANS
|
||||
provider:
|
||||
description:
|
||||
- Convience method that allows all M(openswitch) arguments to be passed as
|
||||
a dict object. All constraints (required, choices, etc) must be
|
||||
met either by individual arguments or values in this dict.
|
||||
required: false
|
||||
default: null
|
||||
|
||||
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue