Add default parameters to cisco vts ml2 plugin manifest

Change-Id: I98fb8d49c4d4a43df438f3ff34d278a3beaea6a9
Signed-off-by: Wojciech Dec <wdec@cisco.com>
This commit is contained in:
Wojciech Dec 2017-10-17 19:37:09 +02:00
parent 8d06d1c062
commit 9407b9d461
1 changed files with 11 additions and 8 deletions

View File

@ -6,16 +6,19 @@
# === Parameters
#
# [*vts_username*]
# (required) The VTS controller username
# (optional) The VTS controller username
# Example: 'admin'
# Defaults to $::os_service_default
#
# [*vts_password*]
# (required) The VTS controller password
# (optional) The VTS controller password
# Example: 'admin'
# Defaults to $::os_service_default
#
# [*vts_url*]
# (required) The VTS controller neutron URL
# (optional) The VTS controller neutron URL
# Example: 'http://127.0.0.1:8888/api/running/openstack'
# Defaults to $::os_service_default
#
# [*vts_timeout*]
# (optional) Timeout for connection to vts host REST interface.
@ -40,10 +43,10 @@
# Defaults to 'present'
#
class neutron::plugins::ml2::cisco::vts (
$vts_username,
$vts_password,
$vts_url,
$vts_vmmid,
$vts_username = $::os_service_default,
$vts_password = $::os_service_default,
$vts_url = $::os_service_default,
$vts_vmmid = $::os_service_default,
$vts_timeout = $::os_service_default,
$vts_sync_timeout = $::os_service_default,
$vts_retry_count = $::os_service_default,