From e5076cf7b383f618ff583c0dc2a95f943258aacd Mon Sep 17 00:00:00 2001 From: Ibrahiem Mohammad Date: Wed, 11 Oct 2023 12:00:15 -0500 Subject: [PATCH 1/2] fix lb output descriptions descriptions for lb_arn and lb_id were duplicated --- outputs.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/outputs.tf b/outputs.tf index 816edc6..76e5b85 100644 --- a/outputs.tf +++ b/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 = try(aws_lb.this[0].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 = try(aws_lb.this[0].arn, "") } From a6128e4d3a1df69c6b43831ee3e8eac326cca964 Mon Sep 17 00:00:00 2001 From: Ibrahiem Mohammad Date: Wed, 11 Oct 2023 12:04:35 -0500 Subject: [PATCH 2/2] 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 }