github.com/noirx94/tendermintmp@v0.0.1/networks/remote/terraform/cluster/outputs.tf (about)

     1  // The cluster name
     2  output "name" {
     3    value = "${var.name}"
     4  }
     5  
     6  // The list of cluster instance IDs
     7  output "instances" {
     8    value = ["${digitalocean_droplet.cluster.*.id}"]
     9  }
    10  
    11  // The list of cluster instance public IPs
    12  output "public_ips" {
    13    value = ["${digitalocean_droplet.cluster.*.ipv4_address}"]
    14  }
    15