Skip to content

Commit 5a0eba3

Browse files
author
mayank0202
committed
resolved comments
1 parent 2637922 commit 5a0eba3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ module "ecs" {
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 |
140140
| <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 |
141-
| <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 |
142-
| <a name="output_alb_security_group_id"></a> [alb\_security\_group\_id](#output\_alb\_security\_group\_id) | Alb Security Group |
141+
| <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 |
142+
| <a name="output_alb_security_group_id"></a> [alb\_security\_group\_id](#output\_alb\_security\_group\_id) | ALB Security Group |
143143
| <a name="output_cluster_arn"></a> [cluster\_arn](#output\_cluster\_arn) | ECS Cluster ARN |
144144
| <a name="output_cluster_id"></a> [cluster\_id](#output\_cluster\_id) | ECS Cluster ID |
145145
| <a name="output_cluster_name"></a> [cluster\_name](#output\_cluster\_name) | ECS Cluster name |

locals.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ locals {
3131
},
3232
## listeners
3333
{
34-
name = "/${var.namespace}/${var.environment}/alb/${module.alb.alb_name}/http_listener/arn"
34+
name = "/${var.namespace}/${var.environment}/alb/${module.alb.alb_name}/http-listener/arn"
3535
value = aws_lb_listener.http.arn
3636
description = "ARN of the HTTP listener"
3737
type = "String"
3838
},
3939
{
40-
name = "/${var.namespace}/${var.environment}/alb/${module.alb.alb_name}/https_listener/arn"
40+
name = "/${var.namespace}/${var.environment}/alb/${module.alb.alb_name}/https-listener/arn"
4141
value = aws_lb_listener.https.arn
4242
description = "ARN of the HTTPS listener"
4343
type = "String"

outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ output "health_check_fqdn" {
4141

4242
output "alb_https_listener_arn" {
4343
value = aws_lb_listener.https.arn
44-
description = "HTTPs listener ARN for downstream services to use"
44+
description = "HTTPS listener ARN for downstream services to use"
4545
}
4646

4747
output "alb_http_listener_arn" {
@@ -51,7 +51,7 @@ output "alb_http_listener_arn" {
5151

5252
output "alb_security_group_id" {
5353
value = module.alb_sg.id
54-
description = "Alb Security Group"
54+
description = "ALB Security Group"
5555
}
5656

5757
################################################################################

0 commit comments

Comments
 (0)