File: neutron_wsgi.pp

package info (click to toggle)
puppet-module-neutron 27.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,772 kB
  • sloc: ruby: 13,048; python: 33; sh: 15; makefile: 10
file content (14 lines) | stat: -rw-r--r-- 410 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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,
}