mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
19 lines
477 B
HCL
19 lines
477 B
HCL
output "ingest_ips" {
|
|
description = "List of ingest IPs"
|
|
value = module.able-cluster.ingest_ips
|
|
}
|
|
|
|
output "data_node_ips" {
|
|
description = "List of data node IPs"
|
|
value = module.able-cluster.data_node_ips
|
|
}
|
|
|
|
output "cluster_prefix" {
|
|
description = "The cluster prefix used"
|
|
value = module.able-cluster.cluster_prefix
|
|
}
|
|
|
|
output "fb_cluster_replica_count" {
|
|
description = "The cluster replica count used"
|
|
value = module.able-cluster.fb_cluster_replica_count
|
|
}
|