5f6411c3dd
Change-Id: I9982b8476ca9dab8a338b66db75d6da6519f9266
39 lines
1.0 KiB
Puppet
39 lines
1.0 KiB
Puppet
# == Class: heat::config
|
|
#
|
|
# This class is used to manage arbitrary Heat configurations.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*heat_config*]
|
|
# (optional) Allow configuration of arbitrary Heat configurations.
|
|
# The value is a hash of heat_config resources. Example:
|
|
# { 'DEFAULT/foo' => { value => 'fooValue'},
|
|
# 'DEFAULT/bar' => { value => 'barValue'}
|
|
# }
|
|
# In yaml format, Example:
|
|
# heat_config:
|
|
# DEFAULT/foo:
|
|
# value: fooValue
|
|
# DEFAULT/bar:
|
|
# value: barValue
|
|
#
|
|
# [*heat_api_paste_ini*]
|
|
# (optional) Allow configuration of /etc/heat/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 heat::config (
|
|
$heat_config = {},
|
|
$heat_api_paste_ini = {},
|
|
) {
|
|
|
|
include heat::deps
|
|
|
|
validate_legacy(Hash, 'validate_hash', $heat_config)
|
|
validate_legacy(Hash, 'validate_hash', $heat_api_paste_ini)
|
|
|
|
create_resources('heat_config', $heat_config)
|
|
create_resources('heat_api_paste_ini', $heat_api_paste_ini)
|
|
}
|