mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-11 22:34:09 +00:00
Jakub Sokołowski
40776004de
This way it will be easier to find what you need, and also run Ansible more selectively against these 3 distinct groups of hosts. Signed-off-by: Jakub Sokołowski <jakub@status.im>
24 lines
937 B
HCL
24 lines
937 B
HCL
output "hosts" {
|
|
value = merge(
|
|
module.nimbus_dashboard.hosts,
|
|
module.nimbus_log_store.hosts,
|
|
module.nimbus_geth_mainnet.hosts,
|
|
module.nimbus_geth_goerli_innova.hosts,
|
|
module.nimbus_nodes_fluffy_innova.hosts,
|
|
module.nimbus_eth1_node_innova.hosts,
|
|
module.nimbus_nodes_mainnet_innova.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_innova.hosts,
|
|
module.nimbus_nodes_prater_windows_hetzner.hosts,
|
|
module.nimbus_nodes_prater_windows_innova.hosts,
|
|
module.nimbus_nodes_prater_macm1_innova.hosts,
|
|
module.nimbus_nodes_sepolia_innova.hosts,
|
|
module.nimbus_nodes_holesky_innova_geth.hosts,
|
|
module.nimbus_nodes_holesky_innova_erigon.hosts,
|
|
module.nimbus_nodes_holesky_innova_neth.hosts,
|
|
)
|
|
}
|