Skip to content

Commit

Permalink
Add metadata exception (#177)
Browse files Browse the repository at this point in the history
* Update action.yml

* Update action.yml
  • Loading branch information
tsmithv11 authored Jul 21, 2024
1 parent bb5482c commit b68e027
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,10 @@ inputs:
description: 'Combine the TF Plan and TF graphs to make additional connections. Must be used with `repo_root_for_plan_enrichment`'
required: false
policy_metadata_filter:
description: 'comma separated key:value string to filter policies based on Prisma Cloud policy metadata. See https://prisma.pan.dev/api/cloud/cspm/policy#operation/get-policy-filters-and-options for information on allowed filters. Format: policy.label=test,cloud.type=aws'
description: 'Comma separated key:value string to filter policies based on Prisma Cloud policy metadata. See https://prisma.pan.dev/api/cloud/cspm/policy#operation/get-policy-filters-and-options for information on allowed filters. Format: policy.label=test,cloud.type=aws'
required: false
policy_metadata_filter_exception:
description: 'Comma separated key:value string to exclude filtered policies based on Prisma Cloud policy metadata. When used with policy_metadata_filter, the exceptions override any policies selected asa result of the policy_metadata_filter flag.See https://prisma.pan.dev/api/cloud/cspm/policy#operation/get-policy-filters-and-options for information on allowed filters. Format: policy.label=test,cloud.type=aws'
required: false
skip_path:
description: 'Path (file or directory) to skip, using regular expression logic, relative to the current working directory. Word boundaries are not implicit; i.e., specifying "dir1" will skip any directory or subdirectory named "dir1". Ignored with -f. (comma separated)'
Expand Down Expand Up @@ -182,6 +185,7 @@ runs:
- ${{ inputs.repo_root_for_plan_enrichment }}
- ${{ inputs.deep_analysis }}
- ${{ inputs.policy_metadata_filter }}
- ${{ inputs.policy_metadata_filter_exception }}
- ${{ inputs.skip_path }}
- ${{ inputs.skip_cve_package }}
- ${{ inputs.skip_download }}
Expand Down

0 comments on commit b68e027

Please sign in to comment.