Skip to content

Commit

Permalink
Fixes backend protocol in separate_alb (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfarrell76 authored Oct 19, 2022
1 parent 33f2aab commit 90616d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/sombra_load_balancers/separate_albs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -132,15 +132,15 @@ module external_load_balancer {
# Target groups
target_groups = [{
name = "${var.deploy_env}-${var.project_id}-external"
backend_protocol = "HTTPS"
backend_protocol = var.health_check_protocol
target_type = "ip"
backend_port = var.external_port
health_check = {
enabled = true
interval = 30
port = var.external_port
path = "/health"
protocol = "HTTPS"
backend_protocol = var.health_check_protocol
}
}]

Expand Down

0 comments on commit 90616d5

Please sign in to comment.