Skip to content

Commit

Permalink
add trusted header to discovery address
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcalalang committed Nov 11, 2023
1 parent ccd7892 commit 8672f10
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,15 @@ resource "volterra_http_loadbalancer" "http-lb-discovery-calalang-net" {
disable_learn_from_redirect_traffic = true
}
disable_ip_reputation = true
no_challenge = true
user_id_client_ip = true
enable_trust_client_ip_headers {
client_ip_headers = [X-Forwarded-For]
}
no_challenge = true
user_id_client_ip = true

// Lifecycle because F5XC adds tags/lables/annotations that terraform doesnt know about
lifecycle {
ignore_changes = [labels]
}

}
}

0 comments on commit 8672f10

Please sign in to comment.