Defined Type: profile::analytics::refinery::job::config

Defined in:
modules/profile/manifests/analytics/refinery/job/config.pp

Overview

SPDX-License-Identifier: Apache-2.0

Class profile::analytics::refinery::job::config

Renders a properties file from $properties suitable for using with Refinery jobs configured via ConfigHelper.

Parameters:

  • properties (Any)
  • path (Any) (defaults to: $title)
  • ensure (Any) (defaults to: 'present')


6
7
8
9
10
11
12
13
14
15
# File 'modules/profile/manifests/analytics/refinery/job/config.pp', line 6

define profile::analytics::refinery::job::config(
    $properties,
    $path   = $title,
    $ensure = 'present',
) {
    file { $path:
        ensure  => $ensure,
        content => template('profile/analytics/refinery/job/config.properties.erb'),
    }
}