diff --git a/docs/tutorials/mutelist.md b/docs/tutorials/mutelist.md index f2e328742d..e632d9d299 100644 --- a/docs/tutorials/mutelist.md +++ b/docs/tutorials/mutelist.md @@ -25,8 +25,8 @@ The Mutelist file uses the [YAML](https://en.wikipedia.org/wiki/YAML) format wit ```yaml ### Account, Check and/or Region can be * to apply for all the cases. ### Resources and tags are lists that can have either Regex or Keywords. -### Tags is an optional list that matches on tuples of 'key=value' and are "ANDed" together. -### Use an alternation Regex to match one of multiple tags with "ORed" logic. +### Tags is an optional list that matches on tuples of 'key=value' and are "ORed" together. +### Use an alternation Regex to match one of multiple tags. ### For each check you can except Accounts, Regions, Resources and/or Tags. ########################### MUTELIST EXAMPLE ########################### Mutelist: @@ -50,7 +50,7 @@ Mutelist: Resources: - "test" Tags: - - "test=test" # Will mute every resource containing the string "test" and the tags 'test=test' and + - "test=test" # Will mute every resource containing the string "test" and the tags 'test=test' or - "project=test|project=stage" # either of ('project=test' OR project=stage) in account 123456789012 and every region "*": diff --git a/prowler/config/aws_mutelist_example.yaml b/prowler/config/aws_mutelist_example.yaml index b0a1c87fd7..81e7b953c8 100644 --- a/prowler/config/aws_mutelist_example.yaml +++ b/prowler/config/aws_mutelist_example.yaml @@ -1,7 +1,7 @@ ### Account, Check and/or Region can be * to apply for all the cases. ### Resources and tags are lists that can have either Regex or Keywords. -### Tags is an optional list that matches on tuples of 'key=value' and are "ANDed" together. -### Use an alternation Regex to match one of multiple tags with "ORed" logic. +### Tags is an optional list that matches on tuples of 'key=value' and are "ORed" together. +### Use an alternation Regex to match one of multiple tags. ### For each check you can except Accounts, Regions, Resources and/or Tags. ########################### MUTELIST EXAMPLE ########################### Mutelist: diff --git a/prowler/config/azure_mutelist_example.yaml b/prowler/config/azure_mutelist_example.yaml index d008ddffaa..38bed9a9be 100644 --- a/prowler/config/azure_mutelist_example.yaml +++ b/prowler/config/azure_mutelist_example.yaml @@ -1,8 +1,8 @@ ### Account, Check and/or Region can be * to apply for all the cases. ### Account == Azure Subscription and Region == Azure Location ### Resources and tags are lists that can have either Regex or Keywords. -### Tags is an optional list that matches on tuples of 'key=value' and are "ANDed" together. -### Use an alternation Regex to match one of multiple tags with "ORed" logic. +### Tags is an optional list that matches on tuples of 'key=value' and are "ORed" together. +### Use an alternation Regex to match one of multiple tags. ### For each check you can except Accounts, Regions, Resources and/or Tags. ########################### MUTELIST EXAMPLE ########################### Mutelist: diff --git a/prowler/config/gcp_mutelist_example.yaml b/prowler/config/gcp_mutelist_example.yaml index 78d5ea1179..9cf4d7df9c 100644 --- a/prowler/config/gcp_mutelist_example.yaml +++ b/prowler/config/gcp_mutelist_example.yaml @@ -1,8 +1,8 @@ ### Account, Check and/or Region can be * to apply for all the cases. ### Account == GCP Project ID and Region == GCP Location ### Resources and tags are lists that can have either Regex or Keywords. -### Tags is an optional list that matches on tuples of 'key=value' and are "ANDed" together. -### Use an alternation Regex to match one of multiple tags with "ORed" logic. +### Tags is an optional list that matches on tuples of 'key=value' and are "ORed" together. +### Use an alternation Regex to match one of multiple tags. ### For each check you can except Accounts, Regions, Resources and/or Tags. ########################### MUTELIST EXAMPLE ########################### Mutelist: diff --git a/prowler/config/kubernetes_mutelist_example.yaml b/prowler/config/kubernetes_mutelist_example.yaml index 060db0910a..b6fd520343 100644 --- a/prowler/config/kubernetes_mutelist_example.yaml +++ b/prowler/config/kubernetes_mutelist_example.yaml @@ -1,8 +1,8 @@ ### Account, Check and/or Region can be * to apply for all the cases. ### Account == and Region == ### Resources and tags are lists that can have either Regex or Keywords. -### Tags is an optional list that matches on tuples of 'key=value' and are "ANDed" together. -### Use an alternation Regex to match one of multiple tags with "ORed" logic. +### Tags is an optional list that matches on tuples of 'key=value' and are "ORed" together. +### Use an alternation Regex to match one of multiple tags. ### For each check you can except Accounts, Regions, Resources and/or Tags. ########################### MUTELIST EXAMPLE ########################### Mutelist: diff --git a/tests/providers/aws/lib/mutelist/fixtures/aws_mutelist.yaml b/tests/providers/aws/lib/mutelist/fixtures/aws_mutelist.yaml index a18dd7b202..4e817e2944 100644 --- a/tests/providers/aws/lib/mutelist/fixtures/aws_mutelist.yaml +++ b/tests/providers/aws/lib/mutelist/fixtures/aws_mutelist.yaml @@ -1,7 +1,7 @@ ### Account, Check and/or Region can be * to apply for all the cases. ### Resources and tags are lists that can have either Regex or Keywords. -### Tags is an optional list that matches on tuples of 'key=value' and are "ANDed" together. -### Use an alternation Regex to match one of multiple tags with "ORed" logic. +### Tags is an optional list that matches on tuples of 'key=value' and are "ORed" together. +### Use an alternation Regex to match one of multiple tags. ### For each check you can except Accounts, Regions, Resources and/or Tags. ########################### MUTELIST EXAMPLE ########################### Mutelist: diff --git a/tests/providers/azure/lib/mutelist/fixtures/azure_mutelist.yaml b/tests/providers/azure/lib/mutelist/fixtures/azure_mutelist.yaml index 69fb405006..2e411cfe48 100644 --- a/tests/providers/azure/lib/mutelist/fixtures/azure_mutelist.yaml +++ b/tests/providers/azure/lib/mutelist/fixtures/azure_mutelist.yaml @@ -1,7 +1,7 @@ ### Account, Check and/or Region can be * to apply for all the cases. ### Resources and tags are lists that can have either Regex or Keywords. -### Tags is an optional list that matches on tuples of 'key=value' and are "ANDed" together. -### Use an alternation Regex to match one of multiple tags with "ORed" logic. +### Tags is an optional list that matches on tuples of 'key=value' and are "ORed" together. +### Use an alternation Regex to match one of multiple tags. ### For each check you can except Accounts, Regions, Resources and/or Tags. ########################### MUTELIST EXAMPLE ########################### Mutelist: diff --git a/tests/providers/gcp/lib/mutelist/fixtures/gcp_mutelist.yaml b/tests/providers/gcp/lib/mutelist/fixtures/gcp_mutelist.yaml index 9d530a7a81..c3672f12ff 100644 --- a/tests/providers/gcp/lib/mutelist/fixtures/gcp_mutelist.yaml +++ b/tests/providers/gcp/lib/mutelist/fixtures/gcp_mutelist.yaml @@ -1,7 +1,7 @@ ### Account, Check and/or Region can be * to apply for all the cases. ### Resources and tags are lists that can have either Regex or Keywords. -### Tags is an optional list that matches on tuples of 'key=value' and are "ANDed" together. -### Use an alternation Regex to match one of multiple tags with "ORed" logic. +### Tags is an optional list that matches on tuples of 'key=value' and are "ORed" together. +### Use an alternation Regex to match one of multiple tags. ### For each check you can except Accounts, Regions, Resources and/or Tags. ########################### MUTELIST EXAMPLE ########################### Mutelist: diff --git a/tests/providers/kubernetes/lib/mutelist/fixtures/kubernetes_mutelist.yaml b/tests/providers/kubernetes/lib/mutelist/fixtures/kubernetes_mutelist.yaml index 5a5deb9b02..a5efb18865 100644 --- a/tests/providers/kubernetes/lib/mutelist/fixtures/kubernetes_mutelist.yaml +++ b/tests/providers/kubernetes/lib/mutelist/fixtures/kubernetes_mutelist.yaml @@ -1,7 +1,7 @@ ### Account, Check and/or Region can be * to apply for all the cases. ### Resources and tags are lists that can have either Regex or Keywords. -### Tags is an optional list that matches on tuples of 'key=value' and are "ANDed" together. -### Use an alternation Regex to match one of multiple tags with "ORed" logic. +### Tags is an optional list that matches on tuples of 'key=value' and are "ORed" together. +### Use an alternation Regex to match one of multiple tags. ### For each check you can except Accounts, Regions, Resources and/or Tags. ########################### MUTELIST EXAMPLE ########################### Mutelist: