030820aa2d
Key moments: * use oslo::{db,log,cache,policy}, oslo::messaging::{default,notifications,rabbit} * update top-file docs * add new parameters provided by oslo * update tests accordingly * add oslo dependency to "metadata.json" * add release notes Change-Id: I6840b7b9a0cd4832794b1b2a017fc241759aab66
42 lines
911 B
Puppet
42 lines
911 B
Puppet
# == Class: keystone::policy
|
|
#
|
|
# Configure the keystone policies
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*policies*]
|
|
# (optional) Set of policies to configure for keystone
|
|
# Example :
|
|
# {
|
|
# 'keystone-context_is_admin' => {
|
|
# 'key' => 'context_is_admin',
|
|
# 'value' => 'true'
|
|
# },
|
|
# 'keystone-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/keystone/policy.json
|
|
#
|
|
class keystone::policy (
|
|
$policies = {},
|
|
$policy_path = '/etc/keystone/policy.json',
|
|
) {
|
|
|
|
include ::keystone::deps
|
|
|
|
validate_hash($policies)
|
|
|
|
Openstacklib::Policy::Base {
|
|
file_path => $policy_path,
|
|
}
|
|
|
|
create_resources('openstacklib::policy::base', $policies)
|
|
oslo::policy { 'keystone_config': policy_file => $policy_path }
|
|
}
|