Files
puppet-cloudkitty/manifests/config.pp
Tobias Urdin 457ded9269 Use validate_legacy
This changes all the puppet 3 validate_* functions
to use the validate_legacy function.

The validate_legacy function has been available since
about three years but require Puppet >= 4.4.0 and since
there is Puppet 4.10.12 as latest we should assume people
are running a fairly new Puppet 4 version.

This is the first step to then remove all validate function
calls and use proper types for parameter as described in spec [1].

[1] https://review.openstack.org/#/c/568929/

Change-Id: Ib6f668fed59f8285edafa67f12135fc5032e8f72
2019-02-23 11:01:01 +01:00

39 lines
1.1 KiB
Puppet

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