puppet-neutron/manifests/policy.pp
Tobias Urdin f472852b75 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: I99d3e1b6081bcd706e39de5ca7ffae9db8fc6cb0
2019-03-12 14:33:12 +01:00

47 lines
1.0 KiB
Puppet

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