Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Commit

Permalink
update validator counts
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa committed Aug 15, 2023
1 parent 0928817 commit d4fd660
Showing 1 changed file with 96 additions and 96 deletions.
192 changes: 96 additions & 96 deletions terraform/devnet-8/nodes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,33 +27,33 @@ variable "lighthouse_nethermind" {
}
}

variable "lighthouse_besu" {
default = {
name = "lighthouse-besu"
count = 1
validator_start = 20
validator_end = 24
}
}
# variable "lighthouse_besu" {
# default = {
# name = "lighthouse-besu"
# count = 1
# validator_start = 20
# validator_end = 24
# }
# }

variable "lighthouse_ethereumjs" {
default = {
name = "lighthouse-ethereumjs"
count = 1
validator_start = 24
validator_end = 26
}
}

variable "lighthouse_erigon" {
default = {
name = "lighthouse-erigon"
count = 1
validator_start = 26
validator_start = 20
validator_end = 28
}
}

# variable "lighthouse_erigon" {
# default = {
# name = "lighthouse-erigon"
# count = 1
# validator_start = 26
# validator_end = 28
# }
# }

# Prysm
variable "prysm_geth" {
default = {
Expand All @@ -73,33 +73,33 @@ variable "prysm_nethermind" {
}
}

variable "prysm_besu" {
default = {
name = "prysm-besu"
count = 1
validator_start = 48
validator_end = 52
}
}
# variable "prysm_besu" {
# default = {
# name = "prysm-besu"
# count = 1
# validator_start = 48
# validator_end = 52
# }
# }

variable "prysm_ethereumjs" {
default = {
name = "prysm-ethereumjs"
count = 1
validator_start = 52
validator_end = 54
}
}

variable "prysm_erigon" {
default = {
name = "prysm-erigon"
count = 1
validator_start = 54
validator_start = 48
validator_end = 56
}
}

# variable "prysm_erigon" {
# default = {
# name = "prysm-erigon"
# count = 1
# validator_start = 54
# validator_end = 56
# }
# }

# Lodestar
variable "lodestar_geth" {
default = {
Expand All @@ -119,122 +119,122 @@ variable "lodestar_nethermind" {
}
}

variable "lodestar_besu" {
default = {
name = "lodestar-besu"
count = 1
validator_start = 76
validator_end = 80
}
}
# variable "lodestar_besu" {
# default = {
# name = "lodestar-besu"
# count = 1
# validator_start = 76
# validator_end = 80
# }
# }

variable "lodestar_ethereumjs" {
default = {
name = "lodestar-ethereumjs"
count = 1
validator_start = 80
validator_end = 82
}
}

variable "lodestar_erigon" {
default = {
name = "lodestar-erigon"
count = 1
validator_start = 82
validator_end = 84
}
}

# variable "lodestar_erigon" {
# default = {
# name = "lodestar-erigon"
# count = 1
# validator_start = 82
# validator_end = 84
# }
# }

# Teku
variable "teku_geth" {
default = {
name = "teku-geth"
count = 1
validator_start = 84
validator_end = 94
validator_end = 114
}
}

variable "teku_nethermind" {
default = {
name = "teku-nethermind"
count = 1
validator_start = 94
validator_end = 104
validator_start = 114
validator_end = 134
}
}

variable "teku_besu" {
default = {
name = "teku-besu"
count = 1
validator_start = 104
validator_end = 108
}
}
# variable "teku_besu" {
# default = {
# name = "teku-besu"
# count = 1
# validator_start = 104
# validator_end = 108
# }
#}

variable "teku_ethereumjs" {
default = {
name = "teku-ethereumjs"
count = 1
validator_start = 108
validator_end = 110
validator_start = 134
validator_end = 140
}
}

variable "teku_erigon" {
default = {
name = "teku-erigon"
count = 1
validator_start = 110
validator_end = 112
}
}
# variable "teku_erigon" {
# default = {
# name = "teku-erigon"
# count = 1
# validator_start = 110
# validator_end = 112
# }
# }


# Nimbus
variable "nimbus_geth" {
default = {
name = "nimbus-geth"
count = 1
validator_start = 112
validator_end = 122
validator_start = 140
validator_end = 142
}
}

variable "nimbus_nethermind" {
default = {
name = "nimbus-nethermind"
count = 1
validator_start = 122
validator_end = 132
validator_start = 142
validator_end = 144
}
}

variable "nimbus_besu" {
default = {
name = "nimbus-besu"
count = 1
validator_start = 132
validator_end = 136
}
}
# variable "nimbus_besu" {
# default = {
# name = "nimbus-besu"
# count = 1
# validator_start = 132
# validator_end = 136
# }
# }

variable "nimbus_ethereumjs" {
default = {
name = "nimbus-ethereumjs"
count = 1
validator_start = 136
validator_end = 138
validator_start = 144
validator_end = 146
}
}

variable "nimbus_erigon" {
default = {
name = "nimbus-erigon"
count = 1
validator_start = 138
validator_end = 140
}
}
# variable "nimbus_erigon" {
# default = {
# name = "nimbus-erigon"
# count = 1
# validator_start = 138
# validator_end = 140
# }
# }

0 comments on commit d4fd660

Please sign in to comment.