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