Limor Stotland 3b0bc55c5b puppet-mistral: initial commit
Change-Id: I07c22568ca6c6d1155626fff7cf1d3ca3c6fd5c5
Implements: blueprint add-puppet-mistral
2015-08-09 10:00:45 +00:00

40 lines
810 B
Puppet

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