From 0439d455fb752187658769a30fc4890368b8d55b Mon Sep 17 00:00:00 2001 From: Nacho Rivera Date: Tue, 4 Jul 2023 12:43:39 +0200 Subject: [PATCH] fix(reporting docs): fix S3 reporting desc (#2551) --- docs/tutorials/reporting.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/reporting.md b/docs/tutorials/reporting.md index 9f4e9c8f..ad1d9517 100644 --- a/docs/tutorials/reporting.md +++ b/docs/tutorials/reporting.md @@ -25,13 +25,19 @@ prowler -M csv json json-asff html -F -o -B my-bucket/folder/ +``` + +By default Prowler sends HTML, JSON and CSV output formats, if you want to send a custom output format or a single one of the defaults you can specify it with the `-M` flag. ```sh prowler -M csv -B my-bucket/folder/ ``` -> In the case you do not want to use the assumed role credentials but the initial credentials to put the reports into the S3 bucket, use `-D`/`--output-bucket-no-assume` instead of `-B`/`--output-bucket. +> In the case you do not want to use the assumed role credentials but the initial credentials to put the reports into the S3 bucket, use `-D`/`--output-bucket-no-assume` instead of `-B`/`--output-bucket`. > Make sure that the used credentials have s3:PutObject permissions in the S3 path where the reports are going to be uploaded.