From 157d215230d9ae1fda4df26c0019be6cbc2450c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Fri, 29 Jan 2021 13:26:55 +0100 Subject: [PATCH] specify beacon_node_netkey for nimbus-mainnet-small bootnodes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ansible/group_vars/nimbus-mainnet-small.yml | 3 +++ mainnet.tf | 1 + 2 files changed, 4 insertions(+) diff --git a/ansible/group_vars/nimbus-mainnet-small.yml b/ansible/group_vars/nimbus-mainnet-small.yml index b556492..704f4da 100644 --- a/ansible/group_vars/nimbus-mainnet-small.yml +++ b/ansible/group_vars/nimbus-mainnet-small.yml @@ -2,3 +2,6 @@ beacon_node_network: 'mainnet' beacon_node_cont_tag: 'stable-small' beacon_node_web3_url: 'wss://mainnet.infura.io/ws/v3/9e2f2cc13f70432f8b87dbe7d51b81db' + +# WARNING: Since these are Eth 2 bootnodes we need to keep the keys and IPs unchanged. +beacon_node_netkey: '{{lookup("passwordstore","service/Nimbus/netkey/"+hostname)}}' diff --git a/mainnet.tf b/mainnet.tf index 8ca0e35..cbc685d 100644 --- a/mainnet.tf +++ b/mainnet.tf @@ -1,3 +1,4 @@ +/* WARNING: These are bootnodes and losing their IPs and private keys would be bad. */ module "nimbus_nodes_mainnet_stable_small" { source = "github.com/status-im/infra-tf-amazon-web-services"