puppet-neutron/examples/neutron_wsgi.pp
wangqi 338dc7057c Update mysql connection in doc
Change-Id: Ie780c7eb1a357a7925c7e11498e48365025d40dc
2018-02-25 15:50:08 +00:00

18 lines
489 B
Puppet

# Example of manifest to deploy Neutron API in WSGI with Apache
class { '::neutron':
allow_overlapping_ips => true,
rabbit_password => 'password',
rabbit_user => 'guest',
rabbit_host => 'localhost',
}
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,
}