Sha256: ffbf4d09f8187de78414a7c4cf21b8dd786c0cd423f61a4169672e35c57a8239
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
{ "run_list": [ "recipe[rvm::system]", "recipe[postgresql::server]", "recipe[postgresql::config_pgtune]", "recipe[postgresql::setup_users]", "recipe[postgresql::setup_databases]", "recipe[user::data_bag]", "recipe[scratchify]" ], "users": ["deploy"], "rvm": { "default_ruby": "2.2.3", "rubies": ["2.2.3"], "install_rubies": true, "gpg": {} }, "postgresql": { "version": "9.4", "enable_pgdg_yum": true, "enable_pgdg_apt": true, "password": { "postgres": "<%= postgresql_admin_password %>" }, "users": [ { "username": "<%= app_name %>", "superuser": false, "createdb": false, "login": true, "password": "<%= postgresql_user_password %>" } ], "databases": [ { "name": "<%= app_name %>", "owner": "<%= app_name %>" } ], "pg_hba": [ { "type": "host", "db": "all", "user": "all", "addr": "127.0.0.1/32", "method": "md5" }, { "type": "host", "db": "all", "user": "all", "addr": "::1/128", "method": "md5" } ], "config_pgtune": { "db_type": "web" } }, "automatic": { "ipaddress": "<%= host %>" } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
from-scratch-0.2.0 | templates/node.json.erb |