module "custom_waf" {
  source            = "git@github.com:theorchard/terraform-aws-waf.git//?ref=2.0.2"

  environment       = var.environment
  service_name      = var.service_name
  aws_region        = var.aws_region

  count_waf_enabled = false
  block_waf_enabled = true

  excluded_rules = [
    "SizeRestrictions_QUERYSTRING",
    "SizeRestrictions_QUERYARGUMENTS",
  ]
}
