puppet-cloudkitty/manifests/policy.pp
Tobias Urdin 1e5aac99cd Convert all class usage to relative names
Change-Id: Ifd3d732aeb86e1c046f0164b5a008fd37356d34e
2019-12-08 23:03:31 +01:00

47 lines
1.0 KiB
Puppet

# == Class: cloudkitty::policy
#
# Configure the cloudkitty policies
#
# === Parameters
#
# [*policies*]
# (Optional) Set of policies to configure for cloudkitty
# Example :
# {
# 'cloudkitty-context_is_admin' => {
# 'key' => 'context_is_admin',
# 'value' => 'true'
# },
# 'cloudkitty-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/cloudkitty/policy.json
#
class cloudkitty::policy (
$policies = {},
$policy_path = '/etc/cloudkitty/policy.json',
) {
include cloudkitty::deps
include cloudkitty::params
validate_legacy(Hash, 'validate_hash', $policies)
Openstacklib::Policy::Base {
file_path => $policy_path,
file_user => 'root',
file_group => $::cloudkitty::params::group,
}
create_resources('openstacklib::policy::base', $policies)
oslo::policy { 'cloudkitty_config': policy_file => $policy_path }
}