policy.pp 959 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # == Class: nova::policy
  2. #
  3. # Configure the nova policies
  4. #
  5. # === Parameters
  6. #
  7. # [*policies*]
  8. # (optional) Set of policies to configure for nova
  9. # Example :
  10. # {
  11. # 'nova-context_is_admin' => {
  12. # 'key' => 'context_is_admin',
  13. # 'value' => 'true'
  14. # },
  15. # 'nova-default' => {
  16. # 'key' => 'default',
  17. # 'value' => 'rule:admin_or_owner'
  18. # }
  19. # }
  20. # Defaults to empty hash.
  21. #
  22. # [*policy_path*]
  23. # (optional) Path to the nova policy.json file
  24. # Defaults to /etc/nova/policy.json
  25. #
  26. class nova::policy (
  27. $policies = {},
  28. $policy_path = '/etc/nova/policy.json',
  29. ) {
  30. validate_hash($policies)
  31. $policy_defaults = {
  32. 'file_path' => $policy_path,
  33. 'require' => Anchor['nova::config::begin'],
  34. 'notify' => Anchor['nova::config::end'],
  35. }
  36. create_resources('openstacklib::policy::base', $policies, $policy_defaults)
  37. oslo::policy { 'nova_config': policy_file => $policy_path }
  38. }