e11edd487c
Depends-on: https://review.opendev.org/781428 Change-Id: I64511ee42f7b88e1721bb4b6b963f6ea198dcbd7
63 lines
1.5 KiB
Puppet
63 lines
1.5 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
|
|
#
|
|
class aodh::policy (
|
|
$enforce_scope = $::os_service_default,
|
|
$enforce_new_defaults = $::os_service_default,
|
|
$policies = {},
|
|
$policy_path = '/etc/aodh/policy.yaml',
|
|
) {
|
|
|
|
include aodh::deps
|
|
include aodh::params
|
|
|
|
validate_legacy(Hash, 'validate_hash', $policies)
|
|
|
|
Openstacklib::Policy::Base {
|
|
file_path => $policy_path,
|
|
file_user => 'root',
|
|
file_group => $::aodh::params::group,
|
|
file_format => 'yaml',
|
|
}
|
|
|
|
create_resources('openstacklib::policy::base', $policies)
|
|
|
|
oslo::policy { 'aodh_config':
|
|
enforce_scope => $enforce_scope,
|
|
enforce_new_defaults => $enforce_new_defaults,
|
|
policy_file => $policy_path
|
|
}
|
|
|
|
}
|