2015-07-21 12:33:26 -07:00
|
|
|
# == Class: zaqar::policy
|
|
|
|
#
|
|
|
|
# Configure the zaqar policies
|
|
|
|
#
|
|
|
|
# === Parameters
|
|
|
|
#
|
2021-03-16 18:46:26 +09:00
|
|
|
# [*enforce_scope*]
|
|
|
|
# (Optional) Whether or not to enforce scope when evaluating policies.
|
|
|
|
# Defaults to $::os_service_default.
|
|
|
|
#
|
2021-03-24 18:28:47 +09:00
|
|
|
# [*enforce_new_defaults*]
|
|
|
|
# (Optional) Whether or not to use old deprecated defaults when evaluating
|
|
|
|
# policies.
|
|
|
|
# Defaults to $::os_service_default.
|
|
|
|
#
|
2015-07-21 12:33:26 -07:00
|
|
|
# [*policies*]
|
2018-12-13 17:10:02 +08:00
|
|
|
# (Optional) Set of policies to configure for zaqar
|
2015-07-21 12:33:26 -07:00
|
|
|
# Example :
|
|
|
|
# {
|
|
|
|
# 'zaqar-context_is_admin' => {
|
|
|
|
# 'key' => 'context_is_admin',
|
|
|
|
# 'value' => 'true'
|
|
|
|
# },
|
|
|
|
# 'zaqar-default' => {
|
|
|
|
# 'key' => 'default',
|
|
|
|
# 'value' => 'rule:admin_or_owner'
|
|
|
|
# }
|
|
|
|
# }
|
|
|
|
# Defaults to empty hash.
|
|
|
|
#
|
|
|
|
# [*policy_path*]
|
2020-12-29 16:35:28 +09:00
|
|
|
# (Optional) Path to the zaqar policy.yaml file
|
|
|
|
# Defaults to /etc/zaqar/policy.yaml
|
2015-07-21 12:33:26 -07:00
|
|
|
#
|
2021-09-04 22:22:34 +09:00
|
|
|
# [*policy_dirs*]
|
|
|
|
# (Optional) Path to the zaqar policy folder
|
|
|
|
# Defaults to $::os_service_default
|
|
|
|
#
|
|
|
|
# [*purge_config*]
|
|
|
|
# (optional) Whether to set only the specified policy rules in the policy
|
|
|
|
# file.
|
|
|
|
# Defaults to false.
|
|
|
|
#
|
2015-07-21 12:33:26 -07:00
|
|
|
class zaqar::policy (
|
2021-03-24 18:28:47 +09:00
|
|
|
$enforce_scope = $::os_service_default,
|
|
|
|
$enforce_new_defaults = $::os_service_default,
|
|
|
|
$policies = {},
|
|
|
|
$policy_path = '/etc/zaqar/policy.yaml',
|
2021-09-04 22:22:34 +09:00
|
|
|
$policy_dirs = $::os_service_default,
|
|
|
|
$purge_config = false,
|
2015-07-21 12:33:26 -07:00
|
|
|
) {
|
|
|
|
|
2019-12-08 23:26:05 +01:00
|
|
|
include zaqar::deps
|
|
|
|
include zaqar::params
|
2016-12-07 16:46:57 +08:00
|
|
|
|
2019-02-23 23:17:56 +01:00
|
|
|
validate_legacy(Hash, 'validate_hash', $policies)
|
2015-07-21 12:33:26 -07:00
|
|
|
|
2021-09-04 22:22:34 +09:00
|
|
|
$policy_parameters = {
|
|
|
|
policies => $policies,
|
|
|
|
policy_path => $policy_path,
|
|
|
|
file_user => 'root',
|
|
|
|
file_group => $::zaqar::params::group,
|
|
|
|
file_format => 'yaml',
|
|
|
|
purge_config => $purge_config,
|
2015-07-21 12:33:26 -07:00
|
|
|
}
|
|
|
|
|
2021-09-04 22:22:34 +09:00
|
|
|
create_resources('openstacklib::policy', { $policy_path => $policy_parameters })
|
2015-07-21 12:33:26 -07:00
|
|
|
|
2021-03-16 18:46:26 +09:00
|
|
|
oslo::policy { 'zaqar_config':
|
2021-03-24 18:28:47 +09:00
|
|
|
enforce_scope => $enforce_scope,
|
|
|
|
enforce_new_defaults => $enforce_new_defaults,
|
2021-09-04 22:22:34 +09:00
|
|
|
policy_file => $policy_path,
|
|
|
|
policy_dirs => $policy_dirs,
|
2021-03-16 18:46:26 +09:00
|
|
|
}
|
|
|
|
|
2015-07-21 12:33:26 -07:00
|
|
|
}
|