forked from bcgov/supreme-court-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ronaldo Macapobre
committed
Jul 25, 2024
1 parent
abebde8
commit 81d0e86
Showing
5 changed files
with
42 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
output "ecr_url" { | ||
description = "The ECR URL." | ||
value = try(aws_ecr_repository.ecr_repository.repository_url, "") | ||
value = try(aws_ecr_repository.ecr_repository.repository_url, "") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,15 @@ | ||
output "subnet_private_id" { | ||
description = "Private Subnet ID" | ||
value = aws_subnet.private[*].id | ||
value = aws_subnet.private[*].id | ||
} | ||
|
||
output "ecs_sg_id" { | ||
description = "ECS Security Group ID" | ||
value = aws_security_group.ecs_security_group.id | ||
value = aws_security_group.ecs_security_group.id | ||
} | ||
|
||
output "lb_tg_arn" { | ||
description = "Load Balancer Target Group ARN" | ||
value = aws_lb_target_group.lb_target_group.arn | ||
value = aws_lb_target_group.lb_target_group.arn | ||
} | ||
|
||
output "lb_listener" { | ||
description = "Load Balancer Listener" | ||
value = aws_lb_listener.lb_listener | ||
value = aws_lb_listener.lb_listener | ||
} |