featurebase/qa/tf/perf/able/outputs.tf
2022-09-02 13:23:39 -07:00

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
}