From f5b4980d0e1da83ef794e4d28c4471b3b0bea2a6 Mon Sep 17 00:00:00 2001 From: Alex Trull Date: Sat, 18 Nov 2023 00:50:50 +0100 Subject: [PATCH] renamed outputs so they look better. --- outputs.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/outputs.tf b/outputs.tf index 01e2930..81c3ce6 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,16 +1,16 @@ -output "ipv4_matches" { +output "ipv4_all_matches" { value = local.ipv4_matches } -output "ipv6_matches" { +output "ipv6_all_matches" { value = local.ipv6_matches } -output "ipv4_most_common_response" { +output "ipv4" { value = join("", local.ipv4_most_common_response) } -output "ipv6_most_common_response" { +output "ipv6" { value = join("", local.ipv6_most_common_response) } \ No newline at end of file