Greg Karékinian 37ab52902b Use a password attribute in the parity_node resource
The mainnet and testnet nodes use data from an encrypted data bag

Also fix a bug with the resource (hardcoded "dev" name instead of the
name attribute)
2017-05-03 19:06:55 +02:00

36 lines
635 B
Ruby

#
# Cookbook Name:: kosmos-parity
# Recipe:: node_dev
#
# Copyright 2017, Kosmos
#
# All rights reserved - Do Not Redistribute
#
parity_node "dev" do
password "parityparity"
config parity: {
chain: "dev",
no_download: true, # Don't Download Updates
},
network: {
port: 30303,
warp: true,
},
rpc: {
port: 8545,
cors: "*",
},
dapps: {
port: 8090,
},
ui: {
port: 8180,
force: true,
},
mining: {
reseal_min_period: 0,
}
end