demo/digitalocean: display server IP's on completion

This commit is contained in:
Ryan Uber 2015-09-24 11:44:29 -07:00
parent a36b3f7f94
commit 709c65879c
1 changed files with 4 additions and 0 deletions

View File

@ -50,3 +50,7 @@ module "clients-sfo1" {
ssh_keys = "${var.ssh_keys}"
}
*/
output "cluster-info" {
value = "Nomad Servers: ${join(" ", split(",", module.servers.addrs))}"
}