diff options
Diffstat (limited to 'modules/role')
-rw-r--r-- | modules/role/manifests/cryptoportfolio.pp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/role/manifests/cryptoportfolio.pp b/modules/role/manifests/cryptoportfolio.pp index 2755fee..4b03e16 100644 --- a/modules/role/manifests/cryptoportfolio.pp +++ b/modules/role/manifests/cryptoportfolio.pp | |||
@@ -10,5 +10,21 @@ class role::cryptoportfolio { | |||
10 | password => postgresql_password('cryptoportfolio', generate_password(24, $password_seed, "postgres_cryptoportfolio")), | 10 | password => postgresql_password('cryptoportfolio', generate_password(24, $password_seed, "postgres_cryptoportfolio")), |
11 | } | 11 | } |
12 | 12 | ||
13 | postgresql::server::pg_hba_rule { 'allow localhost TCP access to cryptoportfolio user': | ||
14 | type => 'host', | ||
15 | database => 'cryptoportfolio', | ||
16 | user => 'cryptoportfolio', | ||
17 | address => '127.0.0.1/32', | ||
18 | auth_method => 'md5', | ||
19 | order => "b0", | ||
20 | } | ||
21 | postgresql::server::pg_hba_rule { 'allow localhost ip6 TCP access to cryptoportfolio user': | ||
22 | type => 'host', | ||
23 | database => 'cryptoportfolio', | ||
24 | user => 'cryptoportfolio', | ||
25 | address => '::1/128', | ||
26 | auth_method => 'md5', | ||
27 | order => "b0", | ||
28 | } | ||
13 | ensure_packages("go") | 29 | ensure_packages("go") |
14 | } | 30 | } |