Skip to content

Commit

Permalink
using a hack since 0.0.0.0/0 is not supported
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgreen-moj committed Mar 26, 2024
1 parent 0db4338 commit ae374cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/admin/waf.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource "aws_wafv2_ip_set" "authorised_ips" {
scope = "REGIONAL"
ip_address_version = "IPV4"
#addresses = local.authorised_ips
addresses = ["0.0.0.0/0"] #ND-105 temp change to capture all IP addresses, hitting the service.
addresses = ["0.0.0.0/1"] #ND-105 temp change to capture all IP addresses, hitting the service.
}

resource "aws_wafv2_web_acl" "admin_alb_acl" {
Expand Down

0 comments on commit ae374cd

Please sign in to comment.