Puppet Class: redash

Defined in:
manifests/init.pp

Overview

Class: redash

Install (and configure?) Redash.

Parameters:

  • redash_db_host (Any) (defaults to: 'localhost')
  • redash_db_password (Any) (defaults to: undef)
  • redash_redshift_password (Any) (defaults to: undef)
  • redash_redshift_host (Any) (defaults to: undef)


5
6
7
8
9
10
11
12
# File 'manifests/init.pp', line 5

class redash ( $redash_db_host = 'localhost', $redash_db_password = undef, $redash_redshift_password = undef, $redash_redshift_host = undef ) {

  class { '::redash::package': } ->
  class { '::redash::config': } ->
  class { '::redash::service': } ->
  Class['redash']

}