diff --git a/manifests/config.pp b/manifests/config.pp new file mode 100644 index 0000000..582064c --- /dev/null +++ b/manifests/config.pp @@ -0,0 +1,30 @@ +# == 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) +} diff --git a/spec/classes/tuskar_config_spec.rb b/spec/classes/tuskar_config_spec.rb new file mode 100644 index 0000000..3c20848 --- /dev/null +++ b/spec/classes/tuskar_config_spec.rb @@ -0,0 +1,20 @@ +require 'spec_helper' + +describe 'tuskar::config' do + + let :params do + { :tuskar_config => { + 'DEFAULT/foo' => { 'value' => 'fooValue' }, + 'DEFAULT/bar' => { 'value' => 'barValue' }, + 'DEFAULT/baz' => { 'ensure' => 'absent' } + } + } + end + + it 'configures arbitrary tuskar configurations' do + is_expected.to contain_tuskar_config('DEFAULT/foo').with_value('fooValue') + is_expected.to contain_tuskar_config('DEFAULT/bar').with_value('barValue') + is_expected.to contain_tuskar_config('DEFAULT/baz').with_ensure('absent') + end + +end