Skip to content

Commit

Permalink
fix(output): add descriptions to the outputs
Browse files Browse the repository at this point in the history
Signed-off-by: Bruce Becker <[email protected]>
  • Loading branch information
brucellino committed Aug 2, 2022
1 parent d182521 commit 00f2504
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
output "server_public_ips" {
value = digitalocean_droplet.server[*].ipv4_address
description = "List of public IPs for the Consul servers"
value = digitalocean_droplet.server[*].ipv4_address
}

output "agent_public_ips" {
value = digitalocean_droplet.agent[*].ipv4_address
description = "List of public IPs for the Consul agents"
value = digitalocean_droplet.agent[*].ipv4_address
}

output "load_balancer_ip" {
value = digitalocean_loadbalancer.external.ip
description = "Public IP of the load balancer fronting the servers"
value = digitalocean_loadbalancer.external.ip
}

0 comments on commit 00f2504

Please sign in to comment.