mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-10 20:01:20 +00:00
16 lines
303 B
HCL
16 lines
303 B
HCL
// The cluster name
|
|
output "name" {
|
|
value = "${var.name}"
|
|
}
|
|
|
|
// The list of cluster instance IDs
|
|
output "instances" {
|
|
value = ["${digitalocean_droplet.cluster.*.id}"]
|
|
}
|
|
|
|
// The list of cluster instance public IPs
|
|
output "public_ips" {
|
|
value = ["${digitalocean_droplet.cluster.*.ipv4_address}"]
|
|
}
|
|
|