From f2226dcb12b886cc3a6c0752dbe5625e79dbbf5a Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 24 Mar 2021 16:19:52 +0900 Subject: [PATCH] Add support for oslo_policy/enforce_new_defaults Depends-on: https://review.opendev.org/781428 Change-Id: Iaaa8a7c155b13b979acb53c6a6f6d6a6a3dcaf05 --- manifests/policy.pp | 17 ++++++++++++----- ...y-enforce_new_defaults-f7a8507da362167a.yaml | 5 +++++ spec/classes/barbican_policy_spec.rb | 12 +++++++----- 3 files changed, 24 insertions(+), 10 deletions(-) create mode 100644 releasenotes/notes/policy-enforce_new_defaults-f7a8507da362167a.yaml diff --git a/manifests/policy.pp b/manifests/policy.pp index 6cb9c220..eeaf2310 100644 --- a/manifests/policy.pp +++ b/manifests/policy.pp @@ -8,6 +8,11 @@ # (Optional) Whether or not to enforce scope when evaluating policies. # Defaults to $::os_service_default. # +# [*enforce_new_defaults*] +# (Optional) Whether or not to use old deprecated defaults when evaluating +# policies. +# Defaults to $::os_service_default. +# # [*policies*] # (Optional) Set of policies to configure for barbican # Example : @@ -28,9 +33,10 @@ # Defaults to /etc/barbican/policy.yaml # class barbican::policy ( - $enforce_scope = $::os_service_default, - $policies = {}, - $policy_path = '/etc/barbican/policy.yaml', + $enforce_scope = $::os_service_default, + $enforce_new_defaults = $::os_service_default, + $policies = {}, + $policy_path = '/etc/barbican/policy.yaml', ) { include barbican::deps @@ -48,8 +54,9 @@ class barbican::policy ( create_resources('openstacklib::policy::base', $policies) oslo::policy { 'barbican_config': - enforce_scope => $enforce_scope, - policy_file => $policy_path + enforce_scope => $enforce_scope, + enforce_new_defaults => $enforce_new_defaults, + policy_file => $policy_path } } diff --git a/releasenotes/notes/policy-enforce_new_defaults-f7a8507da362167a.yaml b/releasenotes/notes/policy-enforce_new_defaults-f7a8507da362167a.yaml new file mode 100644 index 00000000..a4f94cdf --- /dev/null +++ b/releasenotes/notes/policy-enforce_new_defaults-f7a8507da362167a.yaml @@ -0,0 +1,5 @@ +--- +features: + - | + The new ``barbican::policy::enforce_new_defaults`` parameter has been + added. diff --git a/spec/classes/barbican_policy_spec.rb b/spec/classes/barbican_policy_spec.rb index 670561e8..c8bb1110 100644 --- a/spec/classes/barbican_policy_spec.rb +++ b/spec/classes/barbican_policy_spec.rb @@ -4,9 +4,10 @@ describe 'barbican::policy' do shared_examples 'barbican::policy' do let :params do { - :enforce_scope => false, - :policy_path => '/etc/barbican/policy.yaml', - :policies => { + :enforce_scope => false, + :enforce_new_defaults => false, + :policy_path => '/etc/barbican/policy.yaml', + :policies => { 'context_is_admin' => { 'key' => 'context_is_admin', 'value' => 'foo:bar' @@ -24,8 +25,9 @@ describe 'barbican::policy' do :file_format => 'yaml', }) is_expected.to contain_oslo__policy('barbican_config').with( - :enforce_scope => false, - :policy_file => '/etc/barbican/policy.yaml', + :enforce_scope => false, + :enforce_new_defaults => false, + :policy_file => '/etc/barbican/policy.yaml', ) end end