Skip to content

Commit de6bf2e

Browse files
committed
fix: drop invalid header fields of aws alb
1 parent 57fb976 commit de6bf2e

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

aws-ecsfargate-terraform/main.tf

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -199,10 +199,11 @@ resource "aws_ecs_service" "op_scim_bridge" {
199199
}
200200

201201
resource "aws_alb" "op_scim_bridge" {
202-
name = var.name_prefix == "" ? "op-scim-bridge-alb" : format("%s-%s", local.name_prefix, "alb")
203-
load_balancer_type = "application"
204-
subnets = data.aws_subnets.public.ids
205-
security_groups = [aws_security_group.alb.id]
202+
name = var.name_prefix == "" ? "op-scim-bridge-alb" : format("%s-%s", local.name_prefix, "alb")
203+
load_balancer_type = "application"
204+
subnets = data.aws_subnets.public.ids
205+
security_groups = [aws_security_group.alb.id]
206+
drop_invalid_header_fields = true
206207

207208
tags = local.tags
208209
}

0 commit comments

Comments
 (0)