Allow to configure policy_dirs
This patch makes it possible to override the current service default, which is /etc/<service>/policy.d . Change-Id: I9dea409a46bd8d22388853582de8f64034cf0d03
This commit is contained in:
parent
4a997f2ef3
commit
37bd354401
@ -32,11 +32,16 @@
|
||||
# (Optional) Path to the heat policy.yaml file
|
||||
# Defaults to /etc/heat/policy.yaml
|
||||
#
|
||||
# [*policy_dirs*]
|
||||
# (Optional) Path to the heat policy folder
|
||||
# Defaults to $::os_service_default
|
||||
#
|
||||
class heat::policy (
|
||||
$enforce_scope = $::os_service_default,
|
||||
$enforce_new_defaults = $::os_service_default,
|
||||
$policies = {},
|
||||
$policy_path = '/etc/heat/policy.yaml',
|
||||
$policy_dirs = $::os_service_default,
|
||||
) {
|
||||
|
||||
include heat::deps
|
||||
@ -56,7 +61,8 @@ class heat::policy (
|
||||
oslo::policy { 'heat_config':
|
||||
enforce_scope => $enforce_scope,
|
||||
enforce_new_defaults => $enforce_new_defaults,
|
||||
policy_file => $policy_path
|
||||
policy_file => $policy_path,
|
||||
policy_dirs => $policy_dirs,
|
||||
}
|
||||
|
||||
}
|
||||
|
5
releasenotes/notes/policy-dirs-cda108ad862f7e05.yaml
Normal file
5
releasenotes/notes/policy-dirs-cda108ad862f7e05.yaml
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
features:
|
||||
- |
|
||||
There is now a new policy_dirs parameter in the heat::policy class,
|
||||
so one can set a custom path.
|
@ -7,6 +7,7 @@ describe 'heat::policy' do
|
||||
:enforce_scope => false,
|
||||
:enforce_new_defaults => false,
|
||||
:policy_path => '/etc/heat/policy.yaml',
|
||||
:policy_dirs => '/etc/heat/policy.d',
|
||||
:policies => {
|
||||
'context_is_admin' => {
|
||||
'key' => 'context_is_admin',
|
||||
@ -28,6 +29,7 @@ describe 'heat::policy' do
|
||||
:enforce_scope => false,
|
||||
:enforce_new_defaults => false,
|
||||
:policy_file => '/etc/heat/policy.yaml',
|
||||
:policy_dirs => '/etc/heat/policy.d',
|
||||
)
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user