Files
puppet-magnum/manifests/clients/cinder.pp
Tobias Urdin f62471ac9c Convert all class usage to relative names
Change-Id: Ib5f6d1bea7dfe4602d7310a3d645f715297a1116
2019-12-08 23:09:55 +01:00

23 lines
483 B
Puppet

# == Class: magnum::clients::cinder
#
# Manages cinder clients configuration in magnum server
#
# === Parameters:
#
# [*region_name*]
# (optional) Region in Identity service catalog to use for communication
# with the OpenStack service.
# Defaults to RegionOne
#
class magnum::clients::cinder(
$region_name = $magnum::clients::region_name,
){
include magnum::deps
include magnum::params
magnum_config {
'cinder_client/region_name': value => $region_name;
}
}