Sha256: 0306e077f54d10d9e7974844f96d3b96e0252ff937fcfa09cd69c1a0202567ae
Contents?: true
Size: 1.33 KB
Versions: 2
Compression:
Stored size: 1.33 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" } }, "scratchify": { "app_name": "<%= app_name %>" }, "automatic": { "ipaddress": "<%= host %>" } }
Version data entries
2 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
from-scratch-0.3.0 | cookbooks/scratchify/templates/node.json.erb |
from-scratch-0.3.0 | templates/node.json.erb |