Ansible role that will install (& uninstall), configure and runs Besu: an enterprise Java Ethereum Client
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
|
|
{% if besu_local_permissions_accounts != [] %}
|
|
|
|
# local accounts allowlist
|
|
|
|
accounts-allowlist=[{{besu_local_permissions_accounts|map('to_json')|join(',')}}]
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if besu_local_permissions_nodes != [] %}
|
|
|
|
# local nodes allowlist
|
|
|
|
nodes-allowlist=[{{besu_local_permissions_nodes|map('to_json')|join(',')}}]
|
|
|
|
{% endif %}
|
|
|
|
|