puppet-barbican/manifests/policy.pp

40 lines
818 B
Puppet

# == Class: barbican::policy
#
# Configure the barbican policies
#
# === Parameters
#
# [*policies*]
# (optional) Set of policies to configure for barbican
# Example :
# {
# 'barbican-context_is_admin' => {
# 'key' => 'context_is_admin',
# 'value' => 'true'
# },
# 'barbican-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/barbican/policy.json
#
class barbican::policy (
$policies = {},
$policy_path = '/etc/barbican/policy.json',
) {
validate_hash($policies)
Openstacklib::Policy::Base {
file_path => $policy_path,
}
create_resources('openstacklib::policy::base', $policies)
}