11ad261fa9
This is the initial commit for puppet-panko. It has been automatically generated using cookiecutter[1] and msync[2] [1] https://github.com/openstack/puppet-openstack-cookiecutter [2] https://github.com/openstack/puppet-modulesync-configs Change-Id: I7098c08fe22d8cdc7f3635c2b1ae4e1e28dc8cd1
42 lines
858 B
Puppet
42 lines
858 B
Puppet
# == Class: panko::policy
|
|
#
|
|
# Configure the panko policies
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*policies*]
|
|
# (optional) Set of policies to configure for panko
|
|
# Example :
|
|
# {
|
|
# 'panko-context_is_admin' => {
|
|
# 'key' => 'context_is_admin',
|
|
# 'value' => 'true'
|
|
# },
|
|
# 'panko-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/panko/policy.json
|
|
#
|
|
class panko::policy (
|
|
$policies = {},
|
|
$policy_path = '/etc/panko/policy.json',
|
|
) {
|
|
|
|
validate_hash($policies)
|
|
|
|
Openstacklib::Policy::Base {
|
|
file_path => $policy_path,
|
|
}
|
|
|
|
create_resources('openstacklib::policy::base', $policies)
|
|
|
|
oslo::policy { 'panko_config': policy_file => $policy_path }
|
|
|
|
}
|