From 378e1599edbec703b8f4fc964b6280a8f83f23cd Mon Sep 17 00:00:00 2001 From: Seizan Shimazaki Date: Thu, 16 May 2024 16:21:52 +0900 Subject: [PATCH] fix(docs): Fix option name in gcp tutorial (#4016) --- docs/tutorials/gcp/projects.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tutorials/gcp/projects.md b/docs/tutorials/gcp/projects.md index 0d2aec4cfb..aca89f14b0 100644 --- a/docs/tutorials/gcp/projects.md +++ b/docs/tutorials/gcp/projects.md @@ -18,11 +18,11 @@ prowler gcp --project-ids project-id1 project-id2 ### Exclude Projects -If you want to exclude some projects from the scan, you can use the `--exclude-project-ids` argument. +If you want to exclude some projects from the scan, you can use the `--excluded-project-ids` argument. ```console -prowler gcp --exclude-project-ids project-id1 project-id2 +prowler gcp --excluded-project-ids project-id1 project-id2 ``` ???+ note - You can use asterisk `*` to exclude projects that match a pattern. For example, `prowler gcp --exclude-project-ids "sys*"` will exclude all the projects that start with `sys`. + You can use asterisk `*` to exclude projects that match a pattern. For example, `prowler gcp --excluded-project-ids "sys*"` will exclude all the projects that start with `sys`.