We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57fb976 commit de6bf2eCopy full SHA for de6bf2e
aws-ecsfargate-terraform/main.tf
@@ -199,10 +199,11 @@ resource "aws_ecs_service" "op_scim_bridge" {
199
}
200
201
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]
+ name = var.name_prefix == "" ? "op-scim-bridge-alb" : format("%s-%s", local.name_prefix, "alb")
+ load_balancer_type = "application"
+ subnets = data.aws_subnets.public.ids
+ security_groups = [aws_security_group.alb.id]
206
+ drop_invalid_header_fields = true
207
208
tags = local.tags
209
0 commit comments