Puppet Class: redash
- Defined in:
- manifests/init.pp
Overview
Class: redash
Install (and configure?) Redash.
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']
}
|