puppet-tuskar/manifests/config.pp
Yanis Guenane 3a38b87b5f Add tuskar::config class
Other modules provide an X::config class to be able to specify
parameters that are not yet part of the module. Tuskar was missing this
feature. This commit aims to add it for puppet-tuskar.

Change-Id: I651657170d10b31c8280581adea2e19a8419eadd
2015-07-20 10:56:10 +02:00

31 lines
790 B
Puppet

# == Class: tuskar::config
#
# This class is used to manage arbitrary Tuskar configurations.
#
# === Parameters
#
# [*tuskar_config*]
# (optional) Allow configuration of arbitrary Tuskar configurations.
# The value is an hash of tuskar_config resources. Example:
# { 'DEFAULT/foo' => { value => 'fooValue'},
# 'DEFAULT/bar' => { value => 'barValue'}
# }
# In yaml format, Example:
# tuskar_config:
# DEFAULT/foo:
# value: fooValue
# DEFAULT/bar:
# value: barValue
#
# NOTE: The configuration MUST NOT be already handled by this module
# or Puppet catalog compilation will fail with duplicate resources.
#
class tuskar::config (
$tuskar_config = {},
) {
validate_hash($tuskar_config)
create_resources('tuskar_config', $tuskar_config)
}