Skip to content

Commit

Permalink
fix: Updated formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesiarmes committed Nov 27, 2024
1 parent 2a402a0 commit 1cfe234
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ resource "aws_wafv2_web_acl" "waf" {
for_each = length(var.upload_paths) > 0 ? [true] : []

content {
name = "${local.prefix}-waf-upload-paths"
name = "${local.prefix}-waf-upload-paths"
priority = 550

override_action {
Expand Down
4 changes: 2 additions & 2 deletions rules.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
resource "aws_wafv2_rule_group" "uploads" {
for_each = length(var.upload_paths) > 0 ? toset(["this"]) : toset([])

name = "${local.prefix}-waf-allow-uploads"
scope = "CLOUDFRONT"
name = "${local.prefix}-waf-allow-uploads"
scope = "CLOUDFRONT"
capacity = 11

visibility_config {
Expand Down

0 comments on commit 1cfe234

Please sign in to comment.