This repository was archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathnodes.tf
296 lines (265 loc) · 5.36 KB
/
nodes.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
# mev-relay
variable "mev_relay" {
default = {
name = "mev-relay"
count = 1
validator_start = 0
validator_end = 0
}
}
# Bootnode
variable "bootnode" {
default = {
name = "bootnode"
count = 2
validator_start = 0
validator_end = 0
}
}
# Lighthouse
variable "lighthouse_geth" {
default = {
name = "lighthouse-geth"
count = 5
validator_start = 0
validator_end = 25000
}
}
variable "lighthouse_nethermind" {
default = {
name = "lighthouse-nethermind"
count = 5
validator_start = 25000
validator_end = 50000
}
}
variable "lighthouse_besu" {
default = {
name = "lighthouse-besu"
count = 2
validator_start = 225000
validator_end = 235000
}
}
variable "lighthouse_erigon" {
default = {
name = "lighthouse-erigon"
count = 2
validator_start = 235000
validator_end = 245000
}
}
variable "lighthouse_ethereumjs" {
default = {
name = "lighthouse-ethereumjs"
count = 1
validator_start = 325000
validator_end = 326000
}
}
# Prysm
variable "prysm_geth" {
default = {
name = "prysm-geth"
count = 5
validator_start = 50000
validator_end = 75000
}
}
variable "prysm_nethermind" {
default = {
name = "prysm-nethermind"
count = 5
validator_start = 75000
validator_end = 100000
}
}
variable "prysm_besu" {
default = {
name = "prysm-besu"
count = 2
validator_start = 245000
validator_end = 255000
}
}
variable "prysm_erigon" {
default = {
name = "prysm-erigon"
count = 2
validator_start = 255000
validator_end = 265000
}
}
variable "prysm_ethereumjs" {
default = {
name = "prysm-ethereumjs"
count = 1
validator_start = 326000
validator_end = 327000
}
}
# Lodestar
variable "lodestar_geth" {
default = {
name = "lodestar-geth"
count = 5
validator_start = 100000
validator_end = 125000
}
}
variable "lodestar_nethermind" {
default = {
name = "lodestar-nethermind"
count = 5
validator_start = 335000
validator_end = 360000
}
}
variable "lodestar_besu" {
default = {
name = "lodestar-besu"
count = 2
validator_start = 265000
validator_end = 275000
}
}
variable "lodestar_erigon" {
default = {
name = "lodestar-erigon"
count = 2
validator_start = 275000
validator_end = 285000
}
}
variable "lodestar_ethereumjs" {
default = {
name = "lodestar-ethereumjs"
count = 1
validator_start = 327000
validator_end = 328000
}
}
# Teku
variable "teku_geth" {
default = {
name = "teku-geth"
count = 5
validator_start = 125000
validator_end = 150000
}
}
variable "teku_nethermind" {
default = {
name = "teku-nethermind"
count = 5
validator_start = 150000
validator_end = 175000
size = "c-8"
}
}
variable "teku_besu" {
default = {
name = "teku-besu"
count = 2
validator_start = 285000
validator_end = 295000
}
}
variable "teku_erigon" {
default = {
name = "teku-erigon"
count = 2
validator_start = 295000
validator_end = 305000
}
}
variable "teku_ethereumjs" {
default = {
name = "teku-ethereumjs"
count = 1
validator_start = 328000
validator_end = 329000
}
}
# Nimbus
variable "nimbus_geth" {
default = {
name = "nimbus-geth"
count = 5
validator_start = 175000
validator_end = 200000
}
}
variable "nimbus_nethermind" {
default = {
name = "nimbus-nethermind"
count = 5
validator_start = 200000
validator_end = 225000
}
}
variable "nimbus_besu" {
default = {
name = "nimbus-besu"
count = 2
validator_start = 305000
validator_end = 315000
}
}
variable "nimbus_erigon" {
default = {
name = "nimbus-erigon"
count = 2
validator_start = 315000
validator_end = 325000
}
}
variable "nimbus_ethereumjs" {
default = {
name = "nimbus-ethereumjs"
count = 1
validator_start = 329000
validator_end = 330000
}
}
# Reth
variable "lighthouse_reth" {
default = {
name = "lighthouse-reth"
count = 1
validator_start = 330000
validator_end = 331000
}
}
variable "prysm_reth" {
default = {
name = "prysm-reth"
count = 1
validator_start = 331000
validator_end = 332000
}
}
variable "lodestar_reth" {
default = {
name = "lodestar-reth"
count = 1
validator_start = 332000
validator_end = 333000
}
}
variable "teku_reth" {
default = {
name = "teku-reth"
count = 1
validator_start = 333000
validator_end = 334000
}
}
variable "nimbus_reth" {
default = {
name = "nimbus-reth"
count = 1
validator_start = 334000
validator_end = 335000
}
}