Skip to content

Commit

Permalink
chore(ci): fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-h1 committed Aug 28, 2024
1 parent 8f27532 commit edaf731
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions terraform/lb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,10 @@ resource "aws_lb_target_group" "app_target_group" {
tags = merge(var.tags, {
"Name" = "${var.project_name}-${var.env}-tg"
})
connection_termination = true
port = 80
protocol = "HTTP"
target_type = "ip"
vpc_id = aws_default_vpc.default_vpc.id
deregistration_delay = 30
port = 80
protocol = "HTTP"
target_type = "ip"
vpc_id = aws_default_vpc.default_vpc.id
health_check {
matcher = "200,301,302"
path = "/api/healthcheck"
Expand Down

0 comments on commit edaf731

Please sign in to comment.