1
0
mirror of synced 2025-12-19 18:05:44 -05:00

Better documentation for outputs

This commit is contained in:
Petri Autero
2019-02-14 22:32:48 +02:00
parent 53c2e6b204
commit b6f53ab027
5 changed files with 36 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
# ------------------------------------------------------------------------------
# MASTER OUTPUTS
# ------------------------------------------------------------------------------
output "master_instance_name" {
description = "The name of the database instance"
value = "${module.postgres.master_instance_name}"
@@ -23,6 +27,10 @@ output "master_proxy_connection" {
value = "${module.postgres.master_proxy_connection}"
}
# ------------------------------------------------------------------------------
# DB OUTPUTS
# ------------------------------------------------------------------------------
output "db_name" {
description = "Name of the default database"
value = "${module.postgres.db_name}"