# == Class: sahara::policy # # Configure the sahara policies # # === Parameters # # [*policies*] # (Optional) Set of policies to configure for sahara # Example : # { # 'sahara-context_is_admin' => { # 'key' => 'context_is_admin', # 'value' => 'true' # }, # 'sahara-default' => { # 'key' => 'default', # 'value' => 'rule:admin_or_owner' # } # } # Defaults to empty hash. # # [*policy_path*] # (Optional) Path to the sahara policy.json file # Defaults to /etc/sahara/policy.json # class sahara::policy ( $policies = {}, $policy_path = '/etc/sahara/policy.json', ) { include ::sahara::deps include ::sahara::params validate_legacy(Hash, 'validate_hash', $policies) Openstacklib::Policy::Base { file_path => $policy_path, file_user => 'root', file_group => $::sahara::params::group, } create_resources('openstacklib::policy::base', $policies) oslo::policy { 'sahara_config': policy_file => $policy_path } }