module "stripo_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 = true
  block_waf_enabled = true
  excluded_rules = [
    "SizeRestrictions_BODY",
    "CrossSiteScripting_BODY",
    "GenericLFI_BODY",
  ]
}
