base_installation::system_hostname: cryptoportfolio.immae.eu
cryptoportfolio::front_version: v0.0.1-2-g989fb5c
cryptoportfolio::front_sha256: 1e82044b6a40b415913658bb1b896087d8c2c43d64c5862cd84f60804f5854dc
-cryptoportfolio::bot_version: v0.1
-cryptoportfolio::bot_sha256: bb974d6b42714929b80262979e026813cfdad1f49de23fa789acb3aef8a2e315
+cryptoportfolio::bot_version: v0.2
+cryptoportfolio::bot_sha256: b2eb00cc520e2c25b7cfa7fb8e5f8cdb25fbb98da8f4a2ff75ad2eb76bc78e9d
$cf_pg_db = "cryptoportfolio"
$cf_pg_password = generate_password(24, $password_seed, "postgres_cryptoportfolio")
$cf_pg_replication_password = generate_password(24, $password_seed, "postgres_cryptoportfolio_replication")
- $cf_pg_host = "localhost:5432"
+ $cf_pg_hostname = "localhost"
+ $cf_pg_port = "5432"
+ $cf_pg_host = "${cf_pg_hostname}:${cf_pg_port}"
$cf_user = "cryptoportfolio"
$cf_group = "cryptoportfolio"
$cf_front_app_static_conf = "${cf_front_app}/cmd/web/env/prod.env"
$cf_bot_app = "${cf_home}/bot"
+ $cf_bot_app_conf = "${cf_home}/bot_config.ini"
+ $cf_bot_app_reports = "${cf_home}/bot_reports"
file { "/var/lib/postgres/data/certs":
ensure => directory,
require => User[$cf_user],
refreshonly => true,
}
+
+ file { $cf_bot_app_conf:
+ owner => $cf_user,
+ group => $cf_group,
+ mode => "0600",
+ content => template("role/cryptoportfolio/bot_config.ini.erb")
+ }
}
unless empty($front_version) {
--- /dev/null
+[postgresql]
+host = <%= @cf_pg_hostname %>
+port = <%= @cf_pg_port %>
+user = <%= @cf_pg_user %>
+password = <%= @cf_pg_password %>
+database = <%= @cf_pg_db %>
+
+[app]
+report_path = <%= @cf_bot_app_reports %>