File: aodh.pp

package info (click to toggle)
puppet-module-aodh 25.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,160 kB
  • sloc: ruby: 2,408; python: 38; makefile: 10; sh: 10
file content (19 lines) | stat: -rw-r--r-- 404 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class { 'aodh': }
class { 'aodh::keystone::authtoken':
  password => 'a_big_secret',
}
class { 'aodh::api':
  enabled      => true,
  service_name => 'httpd',
}
include apache
class { 'aodh::wsgi::apache':
  ssl => false,
}
class { 'aodh::service_credentials':
  password => 'a_big_secret',
}
class { 'aodh::evaluator': }
class { 'aodh::notifier': }
class { 'aodh::listener': }
class { 'aodh::client': }