b276901eed
This change introduces the new purge_config parameter to the policy class so that any policy rules not managed by puppet manifests can be cleared. Co-Authored-By: Martin Schuppert <mschuppert@redhat.com> Depends-On: https://review.opendev.org/802305 Change-Id: Ief0ba5da927484a4e691a1e1796b1e9e4879d8df
77 lines
2.0 KiB
Puppet
77 lines
2.0 KiB
Puppet
# == Class: neutron::policy
|
|
#
|
|
# Configure the neutron 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 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.yaml file
|
|
# Defaults to /etc/neutron/policy.yaml
|
|
#
|
|
# [*policy_dirs*]
|
|
# (Optional) Path to the neutron policy folder
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*purge_config*]
|
|
# (optional) Whether to set only the specified policy rules in the policy
|
|
# file.
|
|
# Defaults to false.
|
|
#
|
|
class neutron::policy (
|
|
$enforce_scope = $::os_service_default,
|
|
$enforce_new_defaults = $::os_service_default,
|
|
$policies = {},
|
|
$policy_path = '/etc/neutron/policy.yaml',
|
|
$policy_dirs = $::os_service_default,
|
|
$purge_config = false,
|
|
) {
|
|
|
|
include neutron::deps
|
|
include neutron::params
|
|
|
|
validate_legacy(Hash, 'validate_hash', $policies)
|
|
|
|
$policy_parameters = {
|
|
policies => $policies,
|
|
policy_path => $policy_path,
|
|
file_user => 'root',
|
|
file_group => $::neutron::params::group,
|
|
file_format => 'yaml',
|
|
purge_config => $purge_config,
|
|
}
|
|
|
|
create_resources('openstacklib::policy', { $policy_path => $policy_parameters })
|
|
|
|
oslo::policy { 'neutron_config':
|
|
enforce_scope => $enforce_scope,
|
|
enforce_new_defaults => $enforce_new_defaults,
|
|
policy_file => $policy_path,
|
|
policy_dirs => $policy_dirs,
|
|
}
|
|
|
|
}
|