Puppet Class: profile::openstack::codfw1dev::wikitech::web

Defined in:
modules/profile/manifests/openstack/codfw1dev/wikitech/web.pp

Overview

SPDX-License-Identifier: Apache-2.0

Parameters:

  • osm_host (Any) (defaults to: lookup('profile::openstack::codfw1dev::wikitech::web::osm_host'))
  • wikidb (Any) (defaults to: lookup('profile::openstack::codfw1dev::wikitech::db_name'))
  • wikitech_nova_ldap_proxyagent_pass (Any) (defaults to: lookup('profile::openstack::codfw1dev::ldap_proxyuser_pass'))
  • wikitech_nova_ldap_user_pass (Any) (defaults to: lookup('profile::openstack::codfw1dev::ldap_user_pass'))


2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'modules/profile/manifests/openstack/codfw1dev/wikitech/web.pp', line 2

class profile::openstack::codfw1dev::wikitech::web(
    $osm_host = lookup('profile::openstack::codfw1dev::wikitech::web::osm_host'),
    $wikidb = lookup('profile::openstack::codfw1dev::wikitech::db_name'),
    $wikitech_nova_ldap_proxyagent_pass = lookup('profile::openstack::codfw1dev::ldap_proxyuser_pass'),
    $wikitech_nova_ldap_user_pass = lookup('profile::openstack::codfw1dev::ldap_user_pass'),
    ) {

    class {'profile::openstack::base::wikitech::web':
        osm_host                           => $osm_host,
        wikidb                             => $wikidb,
        wikitech_nova_ldap_proxyagent_pass => $wikitech_nova_ldap_proxyagent_pass,
        wikitech_nova_ldap_user_pass       => $wikitech_nova_ldap_user_pass,
    }

    class {'::openstack::wikitech::wikitech_static_sync': }
}