Skip to content

Commit ba708cc

Browse files
author
mayank0202
committed
Added Listener arns in outputs #minor
1 parent 0a7b009 commit ba708cc

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,9 @@ module "ecs" {
137137
| <a name="output_alb_certificate_arn"></a> [alb\_certificate\_arn](#output\_alb\_certificate\_arn) | ACM Certificate ARN |
138138
| <a name="output_alb_dns_name"></a> [alb\_dns\_name](#output\_alb\_dns\_name) | External DNS name to the ALB |
139139
| <a name="output_alb_dns_zone_id"></a> [alb\_dns\_zone\_id](#output\_alb\_dns\_zone\_id) | External DNS name to the ALB |
140+
| <a name="output_alb_http_listener_arn"></a> [alb\_http\_listener\_arn](#output\_alb\_http\_listener\_arn) | HTTP listener ARN for downstream services to use |
140141
| <a name="output_alb_https_listener_arn"></a> [alb\_https\_listener\_arn](#output\_alb\_https\_listener\_arn) | HTTPs listener ARN for downstream services to use |
141-
| <a name="output_alb_security_group_id"></a> [alb\_security\_group\_id](#output\_alb\_security\_group\_id) | HTTPs listener ARN for downstream services to use |
142+
| <a name="output_alb_security_group_id"></a> [alb\_security\_group\_id](#output\_alb\_security\_group\_id) | Alb Security Group |
142143
| <a name="output_cluster_arn"></a> [cluster\_arn](#output\_cluster\_arn) | ECS Cluster ARN |
143144
| <a name="output_cluster_id"></a> [cluster\_id](#output\_cluster\_id) | ECS Cluster ID |
144145
| <a name="output_cluster_name"></a> [cluster\_name](#output\_cluster\_name) | ECS Cluster name |

outputs.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,14 @@ output "alb_https_listener_arn" {
4444
description = "HTTPs listener ARN for downstream services to use"
4545
}
4646

47+
output "alb_http_listener_arn" {
48+
value = aws_lb_listener.http.arn
49+
description = "HTTP listener ARN for downstream services to use"
50+
}
51+
4752
output "alb_security_group_id" {
4853
value = module.alb_sg.id
49-
description = "HTTPs listener ARN for downstream services to use"
54+
description = "Alb Security Group"
5055
}
5156

5257
################################################################################

0 commit comments

Comments
 (0)