From 335156964e54060a4d79f2c7a989ddc3b0b5de29 Mon Sep 17 00:00:00 2001 From: Anthony Zawacki Date: Fri, 15 Sep 2023 10:41:12 -0400 Subject: [PATCH] Renamed output variables to have _endpoint for consisitency. --- outputs.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/outputs.tf b/outputs.tf index 7daf23c..dee8bf4 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,5 +1,5 @@ -output "public" { +output "public_endpoint" { value = { hostname = local.public_hostname port_number = local.public_port_number @@ -7,7 +7,7 @@ output "public" { } } -output "internal" { +output "internal_endpoint" { value = { hostname = local.internal_hostname port_number = local.internal_port_number