This repository has been 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
/
nodes.tf
326 lines (295 loc) · 6.09 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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
# mev-relay
variable "mev_relay" {
default = {
name = "mev-relay"
count = 1
validator_start = 0
validator_end = 0
size = "s-4vcpu-16gb-320gb-intel"
}
}
# Bootnode
variable "bootnode" {
default = {
name = "bootnode"
count = 1
validator_start = 0
validator_end = 0
location = "fra1"
size = "s-4vcpu-16gb-320gb-intel"
}
}
# Lighthouse
variable "lighthouse_geth" {
default = {
name = "lighthouse-geth"
count = 1
validator_start = 0
validator_end = 100
location = "fra1"
ipv6 = true
}
}
variable "lighthouse_nethermind" {
default = {
name = "lighthouse-nethermind"
count = 1
validator_start = 100
validator_end = 200
location = "nyc1"
}
}
variable "lighthouse_besu" {
default = {
name = "lighthouse-besu"
count = 1
validator_start = 200
validator_end = 225
location = "blr1"
}
}
variable "lighthouse_erigon" {
default = {
name = "lighthouse-erigon"
count = 1
validator_start = 225
validator_end = 250
location = "sfo3"
}
}
variable "lighthouse_ethereumjs" {
default = {
name = "lighthouse-ethereumjs"
count = 0
validator_start = 0
validator_end = 0
}
}
# Prysm
variable "prysm_geth" {
default = {
name = "prysm-geth"
count = 1
validator_start = 2855
validator_end = 2950
location = "syd1"
}
}
variable "prysm_nethermind" {
default = {
name = "prysm-nethermind"
count = 1
validator_start = 2950
validator_end = 3050
location = "nyc1"
}
}
variable "prysm_besu" {
default = {
name = "prysm-besu"
count = 1
validator_start = 3050
validator_end = 3150
location = "fra1"
}
}
variable "prysm_erigon" {
default = {
name = "prysm-erigon"
count = 1
validator_start = 3150
validator_end = 3250
location = "blr1"
}
}
variable "prysm_ethereumjs" {
default = {
name = "prysm-ethereumjs"
count = 0
validator_start = 0
validator_end = 0
}
}
# Lodestar
variable "lodestar_geth" {
default = {
name = "lodestar-geth"
count = 1
validator_start = 510
validator_end = 620
location = "fra1"
ipv6 = true
}
}
variable "lodestar_nethermind" {
default = {
name = "lodestar-nethermind"
count = 1
validator_start = 620
validator_end = 720
location = "blr1"
}
}
variable "lodestar_besu" {
default = {
name = "lodestar-besu"
count = 1
validator_start = 720
validator_end = 745
location = "sfo3"
}
}
variable "lodestar_erigon" {
default = {
name = "lodestar-erigon"
count = 1
validator_start = 745
validator_end = 770
location = "syd1"
}
}
variable "lodestar_ethereumjs" {
default = {
name = "lodestar-ethereumjs"
count = 1
validator_start = 770
validator_end = 780
location = "nyc1"
}
}
# Teku
variable "teku_geth" {
default = {
name = "teku-geth"
count = 1
validator_start = 780
validator_end = 880
location = "fra1"
}
}
variable "teku_nethermind" {
default = {
name = "teku-nethermind"
count = 1
validator_start = 880
validator_end = 980
location = "blr1"
}
}
variable "teku_besu" {
default = {
name = "teku-besu"
count = 1
validator_start = 980
validator_end = 1005
location = "sfo3"
}
}
variable "teku_erigon" {
default = {
name = "teku-erigon"
count = 1
validator_start = 1005
validator_end = 1030
location = "syd1"
}
}
variable "teku_ethereumjs" {
default = {
name = "teku-ethereumjs"
count = 0
validator_start = 0
validator_end = 0
}
}
# Nimbus
variable "nimbus_geth" {
default = {
name = "nimbus-geth"
count = 1
validator_start = 1030
validator_end = 1140
location = "nyc1"
}
}
variable "nimbus_nethermind" {
default = {
name = "nimbus-nethermind"
count = 1
validator_start = 1140
validator_end = 1240
location = "fra1"
}
}
variable "nimbus_besu" {
default = {
name = "nimbus-besu"
count = 1
validator_start = 1240
validator_end = 1265
location = "blr1"
}
}
variable "nimbus_erigon" {
default = {
name = "nimbus-erigon"
count = 1
validator_start = 1265
validator_end = 1290
location = "sfo3"
}
}
variable "nimbus_ethereumjs" {
default = {
name = "nimbus-ethereumjs"
count = 0
validator_start = 0
validator_end = 0
}
}
# Reth
variable "lighthouse_reth" {
default = {
name = "lighthouse-reth"
count = 1
validator_start = 1290
validator_end = 1450
location = "syd1"
}
}
variable "prysm_reth" {
default = {
name = "prysm-reth"
count = 1
validator_start = 3250
validator_end = 3350
location = "nyc1"
}
}
variable "lodestar_reth" {
default = {
name = "lodestar-reth"
count = 1
validator_start = 1450
validator_end = 1600
location = "fra1"
}
}
variable "teku_reth" {
default = {
name = "teku-reth"
count = 1
validator_start = 1600
validator_end = 1700
location = "blr1"
}
}
variable "nimbus_reth" {
default = {
name = "nimbus-reth"
count = 1
validator_start = 1700
validator_end = 1800
location = "sfo3"
}
}