Puppet Plan: puppet_operational_dashboards::provision_dashboard
- Defined in:
-
plans/provision_dashboard.pp
Summary
A plan to provision a non-SSL operational dashboards node
Overview
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# File 'plans/provision_dashboard.pp', line 3
plan puppet_operational_dashboards::provision_dashboard (
TargetSpec $targets
) {
$targets.apply_prep
apply ($targets) {
class { 'puppet_operational_dashboards':
use_ssl => false,
}
}
# Apply the class twice so we can use the token created by the first application
apply ($targets) {
class { 'puppet_operational_dashboards':
use_ssl => false,
}
}
}
|