mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-10 05:45:51 +00:00
Jakub Sokołowski
9b365b02a7
To replace `windows-01.gc-us-central1-a.nimbus.prater` which is running out of disk space, and is also far too expensive. Signed-off-by: Jakub Sokołowski <jakub@status.im>
21 lines
402 B
HCL
21 lines
402 B
HCL
/* Hetzner AX41-NVMe
|
|
* AMD Ryzen 5 3600 Hexa-Core
|
|
* 64 GB DDR4 RAM
|
|
* 2 x 512 GB NVMe SSD */
|
|
module "nimbus_openeth_mainnet" {
|
|
source = "./modules/dummy-module"
|
|
|
|
name = "mainnet"
|
|
env = "nimbus"
|
|
stage = "openeth"
|
|
group = "nimbus-openeth-mainnet"
|
|
region = "eu-hel1"
|
|
prefix = "he"
|
|
domain = var.domain
|
|
|
|
ips = [
|
|
"95.217.120.250", # mainnet-01.he-eu-hel1.nimbus.openeth
|
|
]
|
|
}
|
|
|