Skip to content

Commit

Permalink
LAWS-3533: changed aws_waf_ip_set to aws_waf_ipset
Browse files Browse the repository at this point in the history
  • Loading branch information
tmahmood72 committed Nov 17, 2023
1 parent 4cb0218 commit 9665041
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions terraform/environments/apex/waf.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
resource "aws_waf_ip_set" "wafmanualallowset" {
resource "aws_waf_ipset" "wafmanualallowset" {
name = "${upper(local.application_name)} Manual Allow Set"
description = ""
scope = "CLOUDFRONT"
# description = ""
# scope = "CLOUDFRONT"
provider = aws.us-east-1
ip_address_version = "IPV4"
# ip_address_version = "IPV4"
addresses = [for ip in split("\n", chomp(file("${path}/aws_waf_ipset.txt"))) : ip]
}

Expand Down

0 comments on commit 9665041

Please sign in to comment.