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.
2 parents b519e0e + 3545748 commit a91e8eaCopy full SHA for a91e8ea
main.tf
@@ -83,6 +83,12 @@ resource "aws_lb" "main" {
83
84
}
85
86
+resource "aws_lb_attribute" "drop_invalid_header_fields" {
87
+ load_balancer_arn = aws_lb.main.arn
88
+ key = "routing.http.drop_invalid_header_fields.enabled"
89
+ value = "true"
90
+}
91
+
92
resource "aws_lb_target_group" "https" {
93
# Name must be less than or equal to 32 characters, or AWS API returns error.
94
# Error: "name" cannot be longer than 32 characters
0 commit comments