Skip to content

Commit

Permalink
Fix invalid input map in byte_match_statement (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
nunofernandes authored May 19, 2023
1 parent 2f1f4c2 commit 522081a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2113,8 +2113,8 @@ resource "aws_wafv2_web_acl" "main" {
positional_constraint = lookup(byte_match_statement.value, "positional_constraint")
search_string = lookup(byte_match_statement.value, "search_string")
text_transformation {
priority = lookup(byte_match_statement.value, "priority")
type = lookup(byte_match_statement.value, "type")
priority = lookup(byte_match_statement.value["text_transformation"], "priority")
type = lookup(byte_match_statement.value["text_transformation"], "type")
}
}
}
Expand Down

0 comments on commit 522081a

Please sign in to comment.