From 168d44d14beccf14c343db640b511d6618512951 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Mart=C3=ADn?= Date: Thu, 29 Aug 2024 14:15:31 +0200 Subject: [PATCH] docs(fixers): improve docs about fixers (#4889) --- docs/tutorials/fixer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/fixer.md b/docs/tutorials/fixer.md index 745f08ac83..5e04c7d449 100644 --- a/docs/tutorials/fixer.md +++ b/docs/tutorials/fixer.md @@ -13,7 +13,7 @@ prowler -c ... --fixer ```sh prowler --list-fixers ``` - +It's important to note that using the fixers for `Access Analyzer`, `GuardDuty`, and `SecurityHub` may incur additional costs. These AWS services might trigger actions or deploy resources that can lead to charges on your AWS account. ## Writing a Fixer To write a fixer, you need to create a file called `_fixer.py` inside the check folder, with a function called `fixer` that receives either the region or the resource to be fixed as a parameter, and returns a boolean value indicating if the fix was successful or not.