generated from ethpandaops/template-devnets
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnodes.tf
83 lines (75 loc) · 1.46 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
# Bootnode
variable "bootnode" {
default = {
name = "bootnode"
count = 1
validator_start = 0
validator_end = 0
}
}
# Lighthouse
variable "lighthouse_geth" {
default = {
name = "lighthouse-geth"
count = 3
validator_start = 0
validator_end = 300
}
}
variable "lighthouse_nethermind" {
default = {
name = "lighthouse-nethermind"
count = 3
validator_start = 300
validator_end = 600
}
}
# Prysm
variable "prysm_geth" {
default = {
name = "prysm-geth"
count = 3
validator_start = 600
validator_end = 900
}
}
variable "prysm_nethermind" {
default = {
name = "prysm-nethermind"
count = 3
validator_start = 900
validator_end = 1200
}
}
variable "teku_nethermind" {
default = {
name = "teku-nethermind"
count = 1
validator_start = 1200
validator_end = 1300
}
}
variable "teku_geth" {
default = {
name = "teku-geth"
count = 1
validator_start = 1300
validator_end = 1400
}
}
variable "nimbus_geth" {
default = {
name = "nimbus-geth"
count = 1
validator_start = 1400
validator_end = 1500
}
}
variable "grandine_geth" {
default = {
name = "grandine-geth"
count = 1
validator_start = 1600
validator_end = 1700
}
}