From a6128e4d3a1df69c6b43831ee3e8eac326cca964 Mon Sep 17 00:00:00 2001 From: Ibrahiem Mohammad Date: Wed, 11 Oct 2023 12:04:35 -0500 Subject: [PATCH] update lb output descriptions for example --- examples/complete-alb/outputs.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/complete-alb/outputs.tf b/examples/complete-alb/outputs.tf index f80e8b5..46b1545 100644 --- a/examples/complete-alb/outputs.tf +++ b/examples/complete-alb/outputs.tf @@ -1,10 +1,10 @@ output "lb_id" { - description = "The ID and ARN of the load balancer we created." + description = "The ID of the load balancer we created." value = module.alb.lb_id } output "lb_arn" { - description = "The ID and ARN of the load balancer we created." + description = "The ARN of the load balancer we created." value = module.alb.lb_arn }