Puppet Class: nova::policy
- Defined in:
- manifests/policy.pp
Overview
Class: nova::policy
Configure the nova policies
Parameters
- enforce_scope
-
(Optional) Whether or not to enforce scope when evaluating policies. Defaults to $facts.
- enforce_new_defaults
-
(Optional) Whether or not to use old deprecated defaults when evaluating policies. Defaults to $facts.
- policies
-
(Optional) Set of policies to configure for nova Example :
{ 'nova-context_is_admin' => { 'key' => 'context_is_admin', 'value' => 'true' }, 'nova-default' => { 'key' => 'default', 'value' => 'rule:admin_or_owner' } }
Defaults to empty hash.
- policy_path
-
(Optional) Path to the nova policy.yaml file Defaults to /etc/nova/policy.yaml
- policy_default_rule
-
(Optional) Default rule. Enforced when a requested rule is not found. Defaults to $facts.
- policy_dirs
-
(Optional) Path to the nova policy folder Defaults to $facts
- purge_config
-
(optional) Whether to set only the specified policy rules in the policy
file. Defaults to false.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'manifests/policy.pp', line 48
class nova::policy (
$enforce_scope = $facts['os_service_default'],
$enforce_new_defaults = $facts['os_service_default'],
Hash $policies = {},
$policy_path = '/etc/nova/policy.yaml',
$policy_default_rule = $facts['os_service_default'],
$policy_dirs = $facts['os_service_default'],
Boolean $purge_config = false,
) {
include nova::deps
include nova::params
$policy_parameters = {
policies => $policies,
policy_path => $policy_path,
file_user => 'root',
file_group => $::nova::params::group,
file_format => 'yaml',
purge_config => $purge_config,
tag => 'nova',
}
create_resources('openstacklib::policy', { $policy_path => $policy_parameters })
# policy config should occur in the config block also.
Anchor['nova::config::begin']
-> Openstacklib::Policy[$policy_path]
-> Anchor['nova::config::end']
oslo::policy { 'nova_config':
enforce_scope => $enforce_scope,
enforce_new_defaults => $enforce_new_defaults,
policy_file => $policy_path,
policy_default_rule => $policy_default_rule,
policy_dirs => $policy_dirs,
}
}
|