
This adds defined anchor points for external modules to hook into the software install, config and service dependency chain. This allows external modules to manage software installation (virtualenv, containers, etc) and service management (pacemaker) without needing rely on resources that may change or be renamed. Change-Id: If0175f5719ec72871febcec04785d63f56fd3d2b
21 lines
445 B
Puppet
21 lines
445 B
Puppet
# == Class: barbican::plugins::simple_crypto
|
|
#
|
|
# Sets up Barbican simple_crypto plugin
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*simple_crypto_plugin_kek*]
|
|
# (optional) base64 encoded 32-byte value
|
|
# Defaults to $::os_service_default
|
|
#
|
|
class barbican::plugins::simple_crypto (
|
|
$simple_crypto_plugin_kek = $::os_service_default,
|
|
) {
|
|
|
|
include ::barbican::deps
|
|
|
|
barbican_config {
|
|
'simple_crypto_plugin/kek': value => $simple_crypto_plugin_kek;
|
|
}
|
|
}
|