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:
Peter Sprygada 2016-01-19 11:25:24 -05:00
parent 33d390fb58
commit 7640eca368
2 changed files with 31 additions and 14 deletions

View file

@ -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
"""