aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/services/monitoring/sensu-base.yaml
blob: a8303a5918298f257b833549de822bd231d44994 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
heat_template_version: ocata

description: Sensu base service

parameters:
  ServiceNetMap:
    default: {}
    description: Mapping of service_name -> network name. Typically set
                 via parameter_defaults in the resource registry.  This
                 mapping overrides those in ServiceNetMapDefaults.
    type: json
  EndpointMap:
    default: {}
    description: Mapping of service endpoint -> protocol. Typically set
                 via parameter_defaults in the resource registry.
    type: json
  DefaultPasswords:
    default: {}
    type: json
  MonitoringRabbitHost:
    description: RabbitMQ host Sensu has to connect to.
    type: string
    default: ''
  MonitoringRabbitPort:
    default: 5672
    description: Set RabbitMQ subscriber port, change this if using SSL.
    type: number
  MonitoringRabbitUseSSL:
    default: false
    description: >
        RabbitMQ client subscriber parameter to specify an SSL connection
        to the RabbitMQ host.
    type: string
  MonitoringRabbitPassword:
    description: The RabbitMQ password used for monitoring purposes.
    type: string
    hidden: true
  MonitoringRabbitUserName:
    description: The RabbitMQ username used for monitoring purposes.
    type: string
    default: sensu
  MonitoringRabbitVhost:
    description: The RabbitMQ vhost used for monitoring purposes.
    type: string
    default: '/sensu'
  SensuRedactVariables:
    description: Variables from Sensu configuration, which have to be redacted.
    type: comma_delimited_list
    default:
      - password
      - passwd
      - pass
      - api_key
      - api_token
      - access_key
      - secret_key
      - private_key
      - secret

outputs:
  role_data:
    description: Role data for the Sensu role.
    value:
      service_name: sensu_base
      config_settings:
        sensu::enterprise: false
        sensu::enterprise_dashboard: false
        sensu::install_repo: false
        sensu::manage_user: false
        sensu::rabbitmq_host: {get_param: MonitoringRabbitHost}
        sensu::rabbitmq_password: {get_param: MonitoringRabbitPassword}
        sensu::rabbitmq_port: {get_param: MonitoringRabbitPort}
        sensu::rabbitmq_ssl: {get_param: MonitoringRabbitUseSSL}
        sensu::rabbitmq_user: {get_param: MonitoringRabbitUserName}
        sensu::rabbitmq_vhost: {get_param: MonitoringRabbitVhost}
        sensu::redact: {get_param: SensuRedactVariables}
        sensu::sensu_plugin_provider: 'yum'
        sensu::sensu_plugin_name: 'rubygem-sensu-plugin'
        sensu::version: 'present'