e05af2b3f1
This change renames aodh::auth and its parameters to be consistent with the section name and the parameter names in aodh service. This allows operators more easily guess how the class and its parameters correspond to the options in aodh. Change-Id: I7ddc4af25f89317da6a794beba312841d2f1bc25
20 lines
404 B
Puppet
20 lines
404 B
Puppet
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': }
|