diff --git a/docs/tutorials/aws/authentication.md b/docs/tutorials/aws/authentication.md index 7adbb7ef..7a01e259 100644 --- a/docs/tutorials/aws/authentication.md +++ b/docs/tutorials/aws/authentication.md @@ -23,6 +23,14 @@ Those credentials must be associated to a user or role with proper permissions t > If you want Prowler to send findings to [AWS Security Hub](https://aws.amazon.com/security-hub), make sure you also attach the custom policy [prowler-security-hub.json](https://github.com/prowler-cloud/prowler/blob/master/permissions/prowler-security-hub.json). + +## Profiles + +Prowler can use your custom AWS Profile with: +```console +prowler -p/--profile +``` + ## Multi-Factor Authentication If your IAM entity enforces MFA you can use `--mfa` and Prowler will ask you to input the following values to get a new session: diff --git a/docs/tutorials/aws/regions-and-partitions.md b/docs/tutorials/aws/regions-and-partitions.md index 66d1f9ab..0644f2dd 100644 --- a/docs/tutorials/aws/regions-and-partitions.md +++ b/docs/tutorials/aws/regions-and-partitions.md @@ -11,7 +11,14 @@ By default Prowler is able to scan the following AWS partitions: It is important to take into consideration that to scan the China (`aws-cn`) or GovCloud (`aws-us-gov`) partitions it is either required to have a valid region for that partition in your AWS credentials or to specify the regions you want to audit for that partition using the `-f/--region` flag. > Please, refer to https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html#configuring-credentials for more information about the AWS credentials configuration. +Prowler can scan specific region(s) with: +```console +prowler aws -f/--region eu-west-1 us-east-1 +``` + You can get more information about the available partitions and regions in the following [Botocore](https://github.com/boto/botocore) [file](https://github.com/boto/botocore/blob/22a19ea7c4c2c4dd7df4ab8c32733cba0c7597a4/botocore/data/partitions.json). + + ## AWS China To scan your AWS account in the China partition (`aws-cn`): diff --git a/docs/tutorials/misc.md b/docs/tutorials/misc.md index abd4d8a5..0ea85820 100644 --- a/docs/tutorials/misc.md +++ b/docs/tutorials/misc.md @@ -112,16 +112,3 @@ prowler --list-categories ```console prowler --categories ``` - -## AWS - -### Scan specific AWS Region -Prowler can scan specific region(s) with: -```console -prowler -f/--filter-region eu-west-1 us-east-1 -``` -### Use AWS Profile -Prowler can use your custom AWS Profile with: -```console -prowler -p/--profile -```