generated from brucellino/tfmod-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(output): add descriptions to the outputs
Signed-off-by: Bruce Becker <[email protected]>
- Loading branch information
1 parent
d182521
commit 00f2504
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |