File: action_providers.pp

package info (click to toggle)
puppet-module-mistral 27.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,024 kB
  • sloc: ruby: 2,384; python: 33; makefile: 11; sh: 10
file content (28 lines) | stat: -rw-r--r-- 820 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
# == Class: mistral::action_providers
#
# Configure the action_providers config section.
#
# === Parameters
#
# [*allowlist*]
#   (Optional) Allowlist with actions that is allowed to be
#   loaded, if empty all actions will be allowed.
#   Defaults to $facts['os_service_default']

# [*denylist*]
#   (Optional) Denylist with actions that is not allowed to
#   be loaded, allowlist takes precedence, if empty all actions
#   will be allowed.
#   Defaults to $facts['os_service_default']
#
class mistral::action_providers (
  $allowlist = $facts['os_service_default'],
  $denylist  = $facts['os_service_default'],
) {
  include mistral::deps

  mistral_config {
    'action_providers/allowlist': value => join(any2array($allowlist), ',');
    'action_providers/denylist':  value => join(any2array($denylist), ',');
  }
}