You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
303 B

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