From f7c4b8a78890e70769627391a831a8c5d7e93e1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 23 Nov 2023 12:45:43 +0100 Subject: [PATCH] outputs.tf: add to print list of hosta after TF run MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- outputs.tf | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 outputs.tf diff --git a/outputs.tf b/outputs.tf new file mode 100644 index 0000000..a74b4f9 --- /dev/null +++ b/outputs.tf @@ -0,0 +1,6 @@ +output "hosts" { + value = merge( + module.node.hosts, + module.db.hosts, + ) +}