fix(docs): Fix option name in gcp tutorial (#4016)

This commit is contained in:
Seizan Shimazaki
2024-05-16 16:21:52 +09:00
committed by GitHub
parent c33c3e3e21
commit 378e1599ed
+3 -3
View File
@@ -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`.