ca85542cc2
This is the initial commit for puppet-aodh. It has been automatically generated using cookiecutter[1] and msync[2] [1] https://github.com/openstack/puppet-openstack-cookiecutter [2] https://github.com/openstack/puppet-modulesync-configs Change-Id: I17611e8608931cf69b8d9891620e901a8936e19e
40 lines
786 B
Puppet
40 lines
786 B
Puppet
# == Class: aodh::policy
|
|
#
|
|
# Configure the aodh policies
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*policies*]
|
|
# (optional) Set of policies to configure for aodh
|
|
# Example :
|
|
# {
|
|
# 'aodh-context_is_admin' => {
|
|
# 'key' => 'context_is_admin',
|
|
# 'value' => 'true'
|
|
# },
|
|
# 'aodh-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/aodh/policy.json
|
|
#
|
|
class aodh::policy (
|
|
$policies = {},
|
|
$policy_path = '/etc/aodh/policy.json',
|
|
) {
|
|
|
|
validate_hash($policies)
|
|
|
|
Openstacklib::Policy::Base {
|
|
file_path => $policy_path,
|
|
}
|
|
|
|
create_resources('openstacklib::policy::base', $policies)
|
|
|
|
}
|