blob: f2011deae1d37e17e5bb9a354d5b6f6794979a23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# == Class: barometer::policy
#
# Configure the barometer policies
#
# === Parameters
#
# [*policies*]
# (optional) Set of policies to configure for barometer
# Example :
# {
# 'barometer-context_is_admin' => {
# 'key' => 'context_is_admin',
# 'value' => 'true'
# },
# 'barometer-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/barometer/policy.json
#
class barometer::policy (
$policies = {},
$policy_path = '/etc/barometer/policy.json',
) {
validate_hash($policies)
Openstacklib::Policy::Base {
file_path => $policy_path,
}
create_resources('openstacklib::policy::base', $policies)
oslo::policy { 'barometer_config': policy_file => $policy_path }
}
|