Files
puppet-magnum/manifests/clients/barbican.pp
Takashi Kajinami e14a87dbb1 Prepare for voxpupuli-puppet-lint-plugins
Fix new lint errors detected when full of the voxpupili lint plugins
are enabled.

Change-Id: I3109b052d5eb21f6f26174390a9d5bf2756c6ec2
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
2025-08-20 00:33:23 +09:00

29 lines
797 B
Puppet

# == Class: magnum::clients::barbican
#
# Manages barbican 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
#
# [*endpoint_type*]
# (optional) Type of endpoint in Identity service catalog to use for
# communication with the OpenStack service.
# Defaults to publicURL
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;
}
}