Puppet Class: cubbystack::heat::api_cloudwatch
- Defined in:
- manifests/heat/api_cloudwatch.pp
Overview
Class: cubbystack::heat::api_cloudwatch
Configures the heat-api_cloudwatch package and service
Parameters
- package_ensure
-
The status of the heat-api_cloudwatch package Defaults to latest
- service_enable
-
The status of the heat-api_cloudwatch service Defaults to true
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'manifests/heat/api_cloudwatch.pp', line 15
class cubbystack::heat::api_cloudwatch (
$package_ensure = latest,
$service_enable = true
) {
include ::cubbystack::heat
cubbystack::functions::generic_service { 'heat-api_cloudwatch':
service_enable => $service_enable,
package_ensure => $package_ensure,
package_name => $::cubbystack::params::heat_api_cloudwatch_package_name,
service_name => $::cubbystack::params::heat_api_cloudwatch_service_name,
tags => $::cubbystack::heat::tags,
}
}
|