outputs.tf: add to print list of hosta after TF run

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-11-23 12:45:43 +01:00
parent b277afa771
commit f7c4b8a788
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 6 additions and 0 deletions

6
outputs.tf Normal file
View File

@ -0,0 +1,6 @@
output "hosts" {
value = merge(
module.node.hosts,
module.db.hosts,
)
}