puppet-glare/manifests/policy.pp
Tobias Urdin 5bc7e0a115 Use validate_legacy
This changes all the puppet 3 validate_* functions
to use the validate_legacy function.

The validate_legacy function has been available since
about three years but require Puppet >= 4.4.0 and since
there is Puppet 4.10.12 as latest we should assume people
are running a fairly new Puppet 4 version.

This is the first step to then remove all validate function
calls and use proper types for parameter as described in spec [1].

[1] https://review.openstack.org/#/c/568929/

Change-Id: I41d8fc86b439914098a87b4ae6da6c8c672a399d
2019-02-23 14:50:27 +01:00

47 lines
1004 B
Puppet

# == Class: glare::policy
#
# Configure the glare policies
#
# === Parameters
#
# [*policies*]
# (Optional) Set of policies to configure for glare
# Example :
# {
# 'glare-context_is_admin' => {
# 'key' => 'context_is_admin',
# 'value' => 'true'
# },
# 'glare-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/glare/policy.json
#
class glare::policy (
$policies = {},
$policy_path = '/etc/glare/policy.json',
) {
include ::glare::deps
include ::glare::params
validate_legacy(Hash, 'validate_hash', $policies)
Openstacklib::Policy::Base {
file_path => $policy_path,
file_user => 'root',
file_group => $::glare::params::group,
}
create_resources('openstacklib::policy::base', $policies)
oslo::policy { 'glare_config': policy_file => $policy_path }
}