Puppet Class: pg_profile::secured_database

Defined in:
manifests/secured_database.pp

Summary

A short summary of the purpose of this class

Overview

pg_profile::secured_db

A description of what this class does

--

pg_profile::secured_database

In it’s core just adding:

“‘ contain pg_profile::secured_database “`

Is enough to get a secured Postgres database running on your system.

This profile class is based on the more generic [‘pg_profile::database`](./database.html) class, but extends this class with securing the database conforming to the Postgres Center for Internet Security (CIS) rules.

–++–

Examples:

include pg_profile::secured_db


25
26
27
28
# File 'manifests/secured_database.pp', line 25

class pg_profile::secured_database() {
  contain pg_profile::database
  include pg_profile::database::cis_controls
}