Puppet Class: role::analytics_cluster::postgresql
- Defined in:
- modules/role/manifests/analytics_cluster/postgresql.pp
Overview
SPDX-License-Identifier: Apache-2.0
2 3 4 5 6 7 8 9 10 11 |
# File 'modules/role/manifests/analytics_cluster/postgresql.pp', line 2
class role::analytics_cluster::postgresql {
system::role { 'analytics_cluster::postgresql':
description => 'PostgreSQL cluster for Data Engineering'
}
include profile::base::production
include profile::firewall
include profile::analytics::postgresql
include profile::prometheus::postgres_exporter
}
|