File: audit.pp

package info (click to toggle)
puppet-module-ironic 27.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,612 kB
  • sloc: ruby: 5,990; python: 33; makefile: 10; sh: 10
file content (35 lines) | stat: -rw-r--r-- 836 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# == Class: ironic::audit
#
# Configure audit middleware options
#
# == Params
#
# [*enabled*]
#   (Optional) Enable auditing of API requests
#   Defaults to $facts['os_service_default']
#
# [*audit_map_file*]
#   (Optional) Path to audit map file.
#   Defaults to $facts['os_service_default']
#
# [*ignore_req_list*]
#   (Optional) List of REST API HTTP methods to be ignored during audit
#   logging.
#   Defaults to $facts['os_service_default']
#
class ironic::audit (
  $enabled         = $facts['os_service_default'],
  $audit_map_file  = $facts['os_service_default'],
  $ignore_req_list = $facts['os_service_default'],
) {
  include ironic::deps

  ironic_config {
    'audit/enabled': value => $enabled;
  }

  oslo::audit { 'ironic_config':
    audit_map_file  => $audit_map_file,
    ignore_req_list => $ignore_req_list,
  }
}