Skip to content

Commit

Permalink
Adding TRUST_PROXY to the Auth Service environment variables so that …
Browse files Browse the repository at this point in the history
…it works behind a load balancer
  • Loading branch information
keith-miller committed Sep 21, 2024
1 parent 7f95b1b commit e9c29bd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion modules/perforce/helix-authentication-service/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,11 @@ resource "aws_ecs_task_definition" "helix_authentication_service_task_definition
name = "ADMIN_ENABLED"
value = var.enable_web_based_administration ? "true" : "false"
},

{
name = "TRUST_PROXY"
value = "true"
},

],
var.enable_web_based_administration ? [
{
Expand Down

0 comments on commit e9c29bd

Please sign in to comment.