3b1ecbed5c
Change-Id: I634698c222da7e5f570ac3bd2cdee924457791bd
42 lines
1.2 KiB
Puppet
42 lines
1.2 KiB
Puppet
# == Class: barbican::config
|
|
#
|
|
# This class is used to manage arbitrary barbican configurations.
|
|
#
|
|
# example xxx_config
|
|
# (optional) Allow configuration of arbitrary barbican configurations.
|
|
# The value is an hash of barbican_config resources. Example:
|
|
# { 'DEFAULT/foo' => { value => 'fooValue'},
|
|
# 'DEFAULT/bar' => { value => 'barValue'}
|
|
# }
|
|
# In yaml format, Example:
|
|
# barbican_config:
|
|
# DEFAULT/foo:
|
|
# value: fooValue
|
|
# DEFAULT/bar:
|
|
# value: barValue
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*api_config*]
|
|
# (optional) Allow configuration of barbican-api.conf configurations.
|
|
#
|
|
# [*api_paste_ini_config*]
|
|
# (optional) Allow configuration of barbican-api-paste.ini configurations.
|
|
#
|
|
# NOTE: The configuration MUST NOT be already handled by this module
|
|
# or Puppet catalog compilation will fail with duplicate resources.
|
|
#
|
|
class barbican::config (
|
|
$api_config = {},
|
|
$api_paste_ini_config = {},
|
|
) {
|
|
|
|
include barbican::deps
|
|
|
|
validate_legacy(Hash, 'validate_hash', $api_config)
|
|
validate_legacy(Hash, 'validate_hash', $api_paste_ini_config)
|
|
|
|
create_resources('barbican_config', $api_config)
|
|
create_resources('barbican_api_paste_ini', $api_paste_ini_config)
|
|
}
|