Puppet Class: magnum::clients::magnum
- Inherits:
- magnum::clients
- Defined in:
- manifests/clients/magnum.pp
Overview
17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'manifests/clients/magnum.pp', line 17
class magnum::clients::magnum(
$region_name = $magnum::clients::region_name,
$endpoint_type = $magnum::clients::endpoint_type,
) inherits magnum::clients {
include magnum::deps
include magnum::params
magnum_config {
'magnum_client/region_name': value => $region_name;
'magnum_client/endpoint_type': value => $endpoint_type;
}
}
|