puppet-aodh/examples/aodh.pp
Emilien Macchi 54f857d36b Implement API service
* Manifests to deploy Aodh API service
* WSGI support
* unit tests
* acceptance tests
* example manifest

Change-Id: I648310ae05bae37b1790514d0e7fe0bbc5a7bdde
2015-10-21 10:00:29 -04:00

12 lines
278 B
Puppet

class { '::aodh': }
class { '::aodh::api':
enabled => true,
keystone_password => 'a_big_secret',
keystone_identity_uri => 'http://127.0.0.1:35357/',
service_name => 'httpd',
}
include ::apache
class { '::aodh::wsgi::apache':
ssl => false,
}