Skip to content

Commit

Permalink
resolved comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mayank0202 committed Oct 31, 2023
1 parent 2637922 commit 5a0eba3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ module "ecs" {
| <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) | Alb Security Group |
| <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) | 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
4 changes: 2 additions & 2 deletions locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ locals {
},
## listeners
{
name = "/${var.namespace}/${var.environment}/alb/${module.alb.alb_name}/http_listener/arn"
name = "/${var.namespace}/${var.environment}/alb/${module.alb.alb_name}/http-listener/arn"
value = aws_lb_listener.http.arn
description = "ARN of the HTTP listener"
type = "String"
},
{
name = "/${var.namespace}/${var.environment}/alb/${module.alb.alb_name}/https_listener/arn"
name = "/${var.namespace}/${var.environment}/alb/${module.alb.alb_name}/https-listener/arn"
value = aws_lb_listener.https.arn
description = "ARN of the HTTPS listener"
type = "String"
Expand Down
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ output "health_check_fqdn" {

output "alb_https_listener_arn" {
value = aws_lb_listener.https.arn
description = "HTTPs listener ARN for downstream services to use"
description = "HTTPS listener ARN for downstream services to use"
}

output "alb_http_listener_arn" {
Expand All @@ -51,7 +51,7 @@ output "alb_http_listener_arn" {

output "alb_security_group_id" {
value = module.alb_sg.id
description = "Alb Security Group"
description = "ALB Security Group"
}

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

0 comments on commit 5a0eba3

Please sign in to comment.