0cc0bde463
This change includes the aodh_config configuration of the policy file in the aodh::policy class. Change-Id: I1f13db69165dce3d8774ca14b43e2fa095ee881f Depends-On: I4e24d49ed7e84a3b5cb991e912ed320c393569e4
40 lines
847 B
Puppet
40 lines
847 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)
|
|
oslo::policy { 'aodh_config': policy_file => $policy_path }
|
|
}
|