Puppet Class: magnum::clients::barbican

Inherits:
magnum::clients
Defined in:
manifests/clients/barbican.pp

Overview

Parameters:

  • region_name (Any) (defaults to: $magnum::clients::region_name)
  • endpoint_type (Any) (defaults to: $magnum::clients::endpoint_type)


17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'manifests/clients/barbican.pp', line 17

class magnum::clients::barbican(
  $region_name   = $magnum::clients::region_name,
  $endpoint_type = $magnum::clients::endpoint_type,
) inherits magnum::clients {

  include magnum::deps
  include magnum::params

  magnum_config {
    'barbican_client/region_name':   value => $region_name;
    'barbican_client/endpoint_type': value => $endpoint_type;
  }
}