-
Notifications
You must be signed in to change notification settings - Fork 18
/
attributes.yml
76 lines (58 loc) · 1.54 KB
/
attributes.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# encoding: utf-8
#
# This is an example of an attributes file that can be passed to the profiles
# to override the defaults of the attributes defined in each of the tests.
# You can use this to automatically adjust your tests when using automation or
# programmatic deployment or validation of different deployment patterns without
# having to adjust the core profile.
pg_owner: 'postgres'
pg_group: 'postgres'
pg_owner_password: ''
pg_dba: ''
pg_dba_password: ''
pg_user: ''
pg_user_password: ''
pg_host: ''
pg_port: ''
pg_db: ''
pg_table: ''
# priv user account that can login to the postgres host
login_user: ''
login_host: ''
pg_version: '9.5'
pg_data_dir: "/var/lib/pgsql/9.5/data"
pg_conf_file: "/var/lib/pgsql/9.5/data/postgresql.conf"
pg_user_defined_conf: "/var/lib/pgsql/9.5/data/stig-postgresql.conf"
pg_hba_conf_file: "/var/lib/pgsql/9.5/data/pg_hba.conf"
pg_ident_conf_file: "/var/lib/pgsql/9.5/data/pg_ident.conf"
pg_log_dir: "/var/lib/pgsql/9.5/data/pg_log"
pg_shared_dirs: [
"/usr/pgsql-9.5",
"/usr/pgsql-9.5/bin",
"/usr/pgsql-9.5/lib",
"/usr/pgsql-9.5/share"
]
pg_conf_mode: '0600'
pg_ssl: 'on'
pg_log_dest: 'syslog'
pg_syslog_facility: ['local0']
pg_syslog_owner: 'postgres'
pg_audit_log_dir: "/var/lib/pgsql/9.5/data/pg_log"
pgaudit_log_items: ['ddl','role','read','write']
pgaudit_log_line_items: ['%m','%u','%c']
pg_superusers: [
'postgres',
]
pg_users: [
'',
]
pg_replicas: [
'192.168.1.3/32',
]
approved_ext: [
'pgcrypto',
'pg_stat_statements',
'pgaudit'
]
pg_max_connections: '100'
pg_timezone: 'UTC'