puppet-magnum/manifests/policy.pp
Tobias Urdin f62471ac9c Convert all class usage to relative names
Change-Id: Ib5f6d1bea7dfe4602d7310a3d645f715297a1116
2019-12-08 23:09:55 +01:00

47 lines
1012 B
Puppet

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