puppet-neutron/examples/neutron_wsgi.pp
Tobias Urdin 94673ed159 Convert all class usage to relative names
Change-Id: I229428feb1cb4fc7b551d2654328a8f0bb349910
2019-12-08 23:12:32 +01:00

16 lines
443 B
Puppet

# Example of manifest to deploy Neutron API in WSGI with Apache
class { 'neutron':
allow_overlapping_ips => true,
default_transport_url => 'rabbit://guest:password@localhost:5672/neutron',
}
class { 'neutron::server':
auth_password => 'password',
database_connection => 'mysql+pymysql://neutron:password@192.168.1.1/neutron',
service_name => 'httpd',
}
include apache
class { 'neutron::wsgi::apache':
ssl => false,
}