Skip to content

Commit

Permalink
backend troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbass committed Apr 4, 2024
1 parent db7f42d commit e230506
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tofu/modules/services/backend-infra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -92,20 +92,20 @@ module "backend_alb" {
target_groups = {
"${local.target_group_key}" = {
name = "${var.name_prefix}-backend"
protocol = "HTTPS"
protocol = "HTTP"
port = 5000
target_type = "ip"
deregistration_delay = 5
load_balancing_cross_zone_enabled = true

health_check = {
enabled = true
healthy_threshold = 5
interval = 30
healthy_threshold = 2
interval = 10
matcher = "200"
path = "/api/v1"
path = "/"
port = "traffic-port"
protocol = "HTTPS"
protocol = "HTTP"
timeout = 5
unhealthy_threshold = 2
}
Expand Down

0 comments on commit e230506

Please sign in to comment.