ce76a91f62
Change-Id: Ieb9a1d2c1dcef360ca7a323fe4f6cdbb61feecfe
33 lines
820 B
Puppet
33 lines
820 B
Puppet
# == Class: zaqar::config
|
|
#
|
|
# This class is used to manage arbitrary zaqar configurations.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*zaqar_config*]
|
|
# (optional) Allow configuration of arbitrary zaqar configurations.
|
|
# The value is an hash of zaqar_config resources. Example:
|
|
# { 'DEFAULT/foo' => { value => 'fooValue'},
|
|
# 'DEFAULT/bar' => { value => 'barValue'}
|
|
# }
|
|
# In yaml format, Example:
|
|
# zaqar_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 zaqar::config (
|
|
$zaqar_config = {},
|
|
) {
|
|
|
|
include zaqar::deps
|
|
|
|
validate_legacy(Hash, 'validate_hash', $zaqar_config)
|
|
|
|
create_resources('zaqar_config', $zaqar_config)
|
|
}
|