puppet-zaqar/manifests/policy.pp
Tobias Urdin 0cfd8f689c 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: Ib31134bb604e32fd274b41dc78c4356500f71ab0
2019-02-23 23:17:56 +01:00

46 lines
1004 B
Puppet

# == Class: zaqar::policy
#
# Configure the zaqar policies
#
# === Parameters
#
# [*policies*]
# (Optional) Set of policies to configure for zaqar
# Example :
# {
# 'zaqar-context_is_admin' => {
# 'key' => 'context_is_admin',
# 'value' => 'true'
# },
# 'zaqar-default' => {
# 'key' => 'default',
# 'value' => 'rule:admin_or_owner'
# }
# }
# Defaults to empty hash.
#
# [*policy_path*]
# (Optional) Path to the zaqar policy.json file
# Defaults to /etc/zaqar/policy.json
#
class zaqar::policy (
$policies = {},
$policy_path = '/etc/zaqar/policy.json',
) {
include ::zaqar::deps
include ::zaqar::params
validate_legacy(Hash, 'validate_hash', $policies)
Openstacklib::Policy::Base {
file_path => $policy_path,
file_user => 'root',
file_group => $::zaqar::params::group,
}
create_resources('openstacklib::policy::base', $policies)
oslo::policy { 'zaqar_config': policy_file => $policy_path }
}