puppet-neutron/examples/neutron_wsgi.pp
Takashi Kajinami 0815ace85b Remove allow_overlapping_ips
The parameter was already removed from Neutron.

Depends-on: https://review.opendev.org/837286
Change-Id: I7f95546d447e057de09a2e444a2957c805a47edb
2022-05-07 15:32:17 +09:00

15 lines
410 B
Puppet

# Example of manifest to deploy Neutron API in WSGI with Apache
class { 'neutron':
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,
}