wasmd/networks/remote/terraform-do/cluster/outputs.tf

16 lines
303 B
Terraform
Raw Normal View History

2019-05-17 09:12:20 -07:00
// 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}"]
}