
Resource defaults are bad and leaky, we can avoid needing them in this case by using the third argument to create_resources() which is a hash of defaults to apply to resources. https://docs.puppetlabs.com/references/latest/function.html#createresources Change-Id: Iefe949b30d1a41e97e602f058d67a38dcb8d66ad
38 lines
791 B
Puppet
38 lines
791 B
Puppet
# == Class: nova::policy
|
|
#
|
|
# Configure the nova policies
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*policies*]
|
|
# (optional) Set of policies to configure for nova
|
|
# Example :
|
|
# {
|
|
# 'nova-context_is_admin' => {
|
|
# 'key' => 'context_is_admin',
|
|
# 'value' => 'true'
|
|
# },
|
|
# 'nova-default' => {
|
|
# 'key' => 'default',
|
|
# 'value' => 'rule:admin_or_owner'
|
|
# }
|
|
# }
|
|
# Defaults to empty hash.
|
|
#
|
|
# [*policy_path*]
|
|
# (optional) Path to the nova policy.json file
|
|
# Defaults to /etc/nova/policy.json
|
|
#
|
|
class nova::policy (
|
|
$policies = {},
|
|
$policy_path = '/etc/nova/policy.json',
|
|
) {
|
|
|
|
validate_hash($policies)
|
|
|
|
$policy_defaults = { 'file_path' => $policy_path }
|
|
|
|
create_resources('openstacklib::policy::base', $policies, $policy_defaults)
|
|
|
|
}
|