4110755f31
The purge_config parameters only accept boolean values. This enforces that using the typed parameters. Change-Id: I4638f05e5c6783d5b5d729ac166493827201066d
82 lines
2.2 KiB
Puppet
82 lines
2.2 KiB
Puppet
# == Class: cinder::policy
|
|
#
|
|
# Configure the cinder policies
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*enforce_scope*]
|
|
# (Optional) Whether or not to enforce scope when evaluating policies.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*enforce_new_defaults*]
|
|
# (Optional) Whether or not to use old deprecated defaults when evaluating
|
|
# policies.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*policies*]
|
|
# (Optional) Set of policies to configure for cinder
|
|
# Example :
|
|
# {
|
|
# 'cinder-context_is_admin' => {
|
|
# 'key' => 'context_is_admin',
|
|
# 'value' => 'true'
|
|
# },
|
|
# 'cinder-default' => {
|
|
# 'key' => 'default',
|
|
# 'value' => 'rule:admin_or_owner'
|
|
# }
|
|
# }
|
|
# Defaults to empty hash.
|
|
#
|
|
# [*policy_path*]
|
|
# (Optional) Path to the cinder policy.yaml file
|
|
# Defaults to /etc/cinder/policy.yaml
|
|
#
|
|
# [*policy_default_rule*]
|
|
# (Optional) Default rule. Enforced when a requested rule is not found.
|
|
# Defaults to $facts['os_service_default'].
|
|
#
|
|
# [*policy_dirs*]
|
|
# (Optional) Path to the cinder policy folder
|
|
# Defaults to $facts['os_service_default']
|
|
#
|
|
# [*purge_config*]
|
|
# (optional) Whether to set only the specified policy rules in the policy
|
|
# file.
|
|
# Defaults to false.
|
|
#
|
|
class cinder::policy (
|
|
$enforce_scope = $facts['os_service_default'],
|
|
$enforce_new_defaults = $facts['os_service_default'],
|
|
Hash $policies = {},
|
|
$policy_path = '/etc/cinder/policy.yaml',
|
|
$policy_default_rule = $facts['os_service_default'],
|
|
$policy_dirs = $facts['os_service_default'],
|
|
Boolean $purge_config = false,
|
|
) {
|
|
|
|
include cinder::deps
|
|
include cinder::params
|
|
|
|
$policy_parameters = {
|
|
policies => $policies,
|
|
policy_path => $policy_path,
|
|
file_user => 'root',
|
|
file_group => $::cinder::params::group,
|
|
file_format => 'yaml',
|
|
purge_config => $purge_config,
|
|
tag => 'cinder',
|
|
}
|
|
|
|
create_resources('openstacklib::policy', { $policy_path => $policy_parameters })
|
|
|
|
oslo::policy { 'cinder_config':
|
|
enforce_scope => $enforce_scope,
|
|
enforce_new_defaults => $enforce_new_defaults,
|
|
policy_file => $policy_path,
|
|
policy_default_rule => $policy_default_rule,
|
|
policy_dirs => $policy_dirs,
|
|
}
|
|
|
|
}
|