mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-19 02:01:17 +00:00
16 lines
326 B
Terraform
16 lines
326 B
Terraform
|
module "nimbus_nodes_ropsten_hetzner" {
|
||
|
source = "github.com/status-im/infra-tf-dummy-module"
|
||
|
|
||
|
name = "metal"
|
||
|
env = "nimbus"
|
||
|
stage = "ropsten"
|
||
|
group = "nimbus-ropsten-metal"
|
||
|
region = "eu-hel1"
|
||
|
prefix = "he"
|
||
|
domain = var.domain
|
||
|
|
||
|
ips = [
|
||
|
"135.181.57.169", # metal-01.he-eu-hel1.nimbus.ropsten
|
||
|
]
|
||
|
}
|