Files
puppet-aodh/manifests/policy.pp
Tobias Urdin 8bd14efb21 Add per module policy service refresh
Updating the policies for this project should only
refresh the services that reads it.

Change-Id: I7dc9f4a9849043624359eb97775af20d1885103a
(cherry picked from commit 366abb9ccd)
(cherry picked from commit 1f21b55553)
2023-07-21 22:03:24 +00:00

78 lines
2.0 KiB
Puppet

# == Class: aodh::policy
#
# Configure the aodh policies
#
# === Parameters
#
# [*enforce_scope*]
# (Optional) Whether or not to enforce scope when evaluating policies.
# Defaults to $::os_service_default.
#
# [*enforce_new_defaults*]
# (Optional) Whether or not to use old deprecated defaults when evaluating
# policies.
# Defaults to $::os_service_default.
#
# [*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 aodh policy.yaml file
# Defaults to /etc/aodh/policy.yaml
#
# [*policy_dirs*]
# (Optional) Path to the aodh policy folder
# Defaults to $::os_service_default
#
# [*purge_config*]
# (optional) Whether to set only the specified policy rules in the policy
# file.
# Defaults to false.
#
class aodh::policy (
$enforce_scope = $::os_service_default,
$enforce_new_defaults = $::os_service_default,
$policies = {},
$policy_path = '/etc/aodh/policy.yaml',
$policy_dirs = $::os_service_default,
$purge_config = false,
) {
include aodh::deps
include aodh::params
validate_legacy(Hash, 'validate_hash', $policies)
$policy_parameters = {
policies => $policies,
policy_path => $policy_path,
file_user => 'root',
file_group => $::aodh::params::group,
file_format => 'yaml',
purge_config => $purge_config,
tag => 'aodh',
}
create_resources('openstacklib::policy', { $policy_path => $policy_parameters })
oslo::policy { 'aodh_config':
enforce_scope => $enforce_scope,
enforce_new_defaults => $enforce_new_defaults,
policy_file => $policy_path,
policy_dirs => $policy_dirs,
}
}