Skip to content

Commit

Permalink
Added HTTP Listener in the ouput, HTTPS was already added
Browse files Browse the repository at this point in the history
  • Loading branch information
mayank0202 committed Oct 31, 2023
1 parent 0a7b009 commit 412a405
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,9 @@ module "ecs" {
| <a name="output_alb_certificate_arn"></a> [alb\_certificate\_arn](#output\_alb\_certificate\_arn) | ACM Certificate ARN |
| <a name="output_alb_dns_name"></a> [alb\_dns\_name](#output\_alb\_dns\_name) | External DNS name to the ALB |
| <a name="output_alb_dns_zone_id"></a> [alb\_dns\_zone\_id](#output\_alb\_dns\_zone\_id) | External DNS name to the ALB |
| <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 |
| <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 |
| <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 |
| <a name="output_alb_security_group_id"></a> [alb\_security\_group\_id](#output\_alb\_security\_group\_id) | Alb Security Group |
| <a name="output_cluster_arn"></a> [cluster\_arn](#output\_cluster\_arn) | ECS Cluster ARN |
| <a name="output_cluster_id"></a> [cluster\_id](#output\_cluster\_id) | ECS Cluster ID |
| <a name="output_cluster_name"></a> [cluster\_name](#output\_cluster\_name) | ECS Cluster name |
Expand Down
7 changes: 6 additions & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,14 @@ output "alb_https_listener_arn" {
description = "HTTPs listener ARN for downstream services to use"
}

output "alb_http_listener_arn" {
value = aws_lb_listener.http.arn
description = "HTTP listener ARN for downstream services to use"
}

output "alb_security_group_id" {
value = module.alb_sg.id
description = "HTTPs listener ARN for downstream services to use"
description = "Alb Security Group"
}

################################################################################
Expand Down

0 comments on commit 412a405

Please sign in to comment.