Puppet Class: role::crm

Defined in:
modules/role/manifests/crm.pp

Overview

SPDX-License-Identifier: Apache-2.0 Community crm infrastructure



3
4
5
6
7
8
9
10
11
12
13
14
# File 'modules/role/manifests/crm.pp', line 3

class role::crm {
    system::role { 'crm': description => 'Community CRM' }

    include profile::base::production
    include profile::firewall
    include profile::community_civicrm
    include profile::prometheus::apache_exporter

    if $::realm == 'production' {
        include profile::tlsproxy::envoy
    }
}