mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-18 17:52:17 +00:00
Jakub Sokołowski
9481622372
No longer necessary after dedicated metal hosts were deployed: https://github.com/status-im/infra-nimbus/issues/125 Signed-off-by: Jakub Sokołowski <jakub@status.im>
17 lines
582 B
HCL
17 lines
582 B
HCL
output "hosts" {
|
|
value = merge(
|
|
module.nimbus_dashboard.hosts,
|
|
module.nimbus_log_store.hosts,
|
|
module.nimbus_geth_mainnet.hosts,
|
|
module.nimbus_geth_goerli_metal.hosts,
|
|
module.nimbus_nodes_mainnet_hetzner.hosts,
|
|
module.nimbus_nodes_mainnet_stable_small.hosts,
|
|
module.nimbus_nodes_prater_stable_large.hosts,
|
|
module.nimbus_nodes_prater_testing_large.hosts,
|
|
module.nimbus_nodes_prater_unstable_large.hosts,
|
|
module.nimbus_nodes_prater_windows.hosts,
|
|
module.nimbus_nodes_prater_hetzner.hosts,
|
|
module.nimbus_nodes_prater_macos.hosts,
|
|
)
|
|
}
|