demo/digitalocean: output statsite addr

This commit is contained in:
Ryan Uber 2015-09-24 14:15:12 -07:00
parent fd1e1b11b1
commit 9c0702df1d
1 changed files with 6 additions and 2 deletions

View File

@ -56,6 +56,10 @@ module "clients-sfo1" {
ssh_keys = "${var.ssh_keys}"
}
output "cluster-info" {
value = "Nomad Servers: ${join(" ", split(",", module.servers.addrs))}"
output "Nomad Servers" {
value = "${join(" ", split(",", module.servers.addrs))}"
}
output "Statsite Server" {
value = "${module.statsite.addr}"
}