-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sanyam Vikram
committed
Feb 19, 2024
1 parent
dca407d
commit 950b250
Showing
1 changed file
with
109 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,149 +1,160 @@ | ||
# analyze-code-security-scc | ||
|
||
|
||
## Description | ||
|
||
This Github action identifies insecure configurations in Infrastructure as Code (IaC) files for Google Cloud resources. | ||
This action requires Terraform plan files in JSON format for scanning. | ||
|
||
This Github action identifies insecure configurations in Infrastructure as Code (IaC) files for Google Cloud resources. This action requires Terraform plan files in JSON format for scanning. | ||
|
||
|
||
Use this action to detect and remediate issues in IaC files for Google Cloud before you deploy the resources. | ||
|
||
|
||
This action lets you: | ||
- Scan IaC template files (such as Terraform plan files). | ||
- Display issues with their severity as a SARIF Report in the GitHub Workspace after a scan completes. | ||
- Define severity-based failure criteria for passing or failing the build. | ||
|
||
> [!NOTE] | ||
> This is a Security Command Center Premium tier offering for subscription customers only. You must activate the Security Command Center Premium tier in the Google Cloud organization to use this feature. | ||
|
||
**This is not an officially supported Google product, and it is not covered by a | ||
Google Cloud support contract. To report bugs or request features in a Google | ||
Cloud product, please contact [Google Cloud | ||
support](https://cloud.google.com/support).** | ||
Note: This is a Security Command Center Premium tier offering for subscription customers only. You must activate the Security Command Center Premium tier in the Google Cloud organization to use this feature. | ||
|
||
|
||
This offering is covered by the Pre-GA Offerings Terms of the Google Cloud Terms of Service. | ||
|
||
|
||
Don’t enter any sensitive information such as passwords and other personal identifiable information in the Terraform plan files. | ||
|
||
|
||
## Prerequisites | ||
|
||
- This action requires a Google Cloud service account which has the | ||
**Security Posture Shift-Left Validator** role or the **Security | ||
Posture Admin** role on the Google Cloud organization that includes | ||
the IaC resources. For more information, see [Authorization](#authorization). | ||
|
||
- This action runs using Node 20. If you are using self-hosted GitHub Actions | ||
runners, you must use a [runner | ||
version](https://github.com/actions/virtual-environments) that supports this | ||
version or later. | ||
* This action requires a Google Cloud service account which has the **Security Posture Shift-Left Validator** role or the **Security Posture Admin** role on the Google Cloud organization that includes the IaC resources. For more information, see [Authorization](#authorization). | ||
|
||
|
||
* This action runs using Node 20. If you are using self-hosted GitHub Actions | ||
runners, you must use a [runner | ||
version](https://github.com/actions/virtual-environments) that supports this | ||
version or later. | ||
|
||
|
||
## Usage | ||
|
||
|
||
```yaml | ||
jobs: | ||
job_id: | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
|
||
steps: | ||
- uses: 'actions/checkout@v4' | ||
- id: 'auth' | ||
uses: 'google-github-actions/auth@v2' | ||
with: | ||
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider' | ||
service_account: 'my-service-account@my-project.iam.gserviceaccount.com' | ||
|
||
- id: 'analyze-code-security-scc' | ||
uses: 'google-github-actions/analyze-code-security-scc@v1' | ||
with: | ||
organization_id: '123456789' | ||
scan_file_ref: './tf_plan.json' | ||
iac_type: 'terraform' | ||
iac_version: '1.0.0' | ||
scan_timeout: '1m' | ||
ignore_violations: false | ||
failure_criteria: 'High:1,Medium:1,Low:1,Operator:OR' | ||
fail_silently: true | ||
|
||
- if: ${{ steps.analyze-code-security-scc.outputs.iac_scan_result_sarif_path != '' }} | ||
uses: 'actions/upload-artifact@v4' | ||
with: | ||
name: 'sarif' | ||
path: '${{ steps.analyze-code-security-scc.outputs.iac_scan_result_sarif_path }}' | ||
job_id: | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
|
||
|
||
steps: | ||
- id: 'auth' | ||
uses: 'google-github-actions/auth@v2' | ||
with: | ||
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider' | ||
service_account: 'my-service-account@my-project.iam.gserviceaccount.com' | ||
|
||
|
||
- id: 'analyze-code-security-scc' | ||
uses: 'google-github-actions/analyze-code-security-scc@v1' | ||
with: | ||
organization_id: '123456789' | ||
scan_file_ref: './tf_plan.json' | ||
iac_type: terraform | ||
iac_version: '1.0.0' | ||
scan_timeout: '1m' | ||
ignore_violations: false | ||
failure_criteria: 'High:1,Medium:1,Low:1,Operator:or' | ||
fail_silently: false | ||
|
||
|
||
- if: ${{steps.analyze-code-security-scc.outputs.iac_scan_result_sarif_path != ''}} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: sarif | ||
path: ${{ steps.analyze-code-security-scc.outputs.iac_scan_result_sarif_path }} | ||
``` | ||
## Inputs | ||
- `organization_id`: (Required) The Google Cloud organization ID for the | ||
organization which includes the resources that you want to modify. | ||
- `scan_file_ref`: (Required) The absolute file path, including the file name, | ||
for the IaC file in the workspace. For example: './tf_plan.json', or | ||
'./artifacts/tf_plan.json'. | ||
* `organization_id`: (Required) The Google Cloud organization ID for the organization which includes the resources that you want to modify. | ||
|
||
|
||
* `scan_file_ref`: (Required) The absolute file path, including the file name, for the IaC file in the workspace. For example: './tf_plan.json', or './artifacts/tf_plan.json'. | ||
|
||
|
||
* `iac_type`: (Required) The IaC template type. Currently only Terraform is supported. | ||
|
||
- `iac_type`: (Required) The IaC template type. Currently only Terraform is | ||
supported. | ||
|
||
- `iac_version`: (Required) The IaC template version. For example: '1.6.6', | ||
or '1.6.5'. | ||
* `iac_version`: (Required) The IaC template version. For example: '1.6.6', or '1.6.5'. | ||
|
||
- `scan_timeout`: (Optional) The maximum time before the action stops. | ||
The time must be between '1m' and '10m'. The default is `1m`. | ||
|
||
- `ignore_violations`: (Optional) Whether violations found in IaC file | ||
should be ignored when determining the build status. This input doesn’t | ||
apply to violations that are related to generating SARIF reports and | ||
determining the `iac_scan_result`. The default is `false`. | ||
* `scan_time_out`: (Optional) The maximum time before the action stops. The time must be between '1m' and '10m'. The default is `1m`. | ||
|
||
- `failure_criteria`: (Optional) The failure criteria that determines the | ||
workflow build status. You can set a threshold for the number of critical, | ||
high, medium, and low severity issues and use an aggregator (either `and` | ||
or `or`) to evaluate the criteria. To determine whether a build has failed, | ||
the threshold for each severity is evaluated against the count of issues | ||
with that severity in the IaC scan results and then severity level evaluations | ||
are aggregated using `AND` or `OR` to arrive at `failure_criteria` value. | ||
|
||
If the `failure_criteria` evaluates to `true`, the workflow is marked as | ||
`FAILED`. Otherwise, the workflow is marked as `SUCCESS`. The default is | ||
"Critical:1, High:1, Medium:1, Low:1, Operator:OR". | ||
* `ignore_violations`: (Optional) Whether violations found in IaC file should be ignored when determining the build status. This input doesn’t apply to violations that are related to generating SARIF reports and determining the `iac_scan_result`. The default is `false`. | ||
|
||
|
||
* `failure_criteria`: (Optional) The failure criteria that determines the workflow build status. You can set a threshold for the number of critical, high, medium, and low severity issues and use an aggregator (either `and` or `or`) to evaluate the criteria. To determine whether a build has failed, the threshold for each severity is evaluated against the count of issues with that severity in the IaC scan results and then severity level evaluations are aggregated using `AND` or `OR` to arrive at `failure_criteria` value. | ||
|
||
|
||
If the `failure_criteria` evaluates to `true`, the workflow is marked as `FAILED`. Otherwise, the workflow is marked as `SUCCESS`. The default is "Critical:1, High:1, Medium:1, Low:1, Operator:or". | ||
|
||
|
||
* `fail_silently`: (Optional) Whether the workflow passes when an internal error (such as an invalid credential or plugin dependency failure) occurs. Note: The action always fails when the input is invalid. The default is `false`. | ||
|
||
- `fail_silently`: (Optional) If set to true, workflow will not fail in case | ||
of any internal error including invalid credentials and plugin dependency | ||
failure. Note: Action will always fail in case of any input validation | ||
failure. Default: false. | ||
|
||
## Outputs | ||
|
||
- `iac_scan_result`: The result of the security scan. One of: | ||
|
||
1. `passed` - No violations were found or the `failure_criteria` was not | ||
satisfied. | ||
2. `failed` - The `failure_criteria` was satisfied. | ||
3. `error` - The action ran into an execution error, generally | ||
due to a misconfiguration or invalid credentials. | ||
* `iac_scan_result`: The result of the security scan. One of: | ||
1. `passed` - No violations were found or the `failure_criteria` was not satisfied. | ||
2. `failed` - The `failure_criteria` was satisfied. | ||
3. `error` - The action ran into an execution error, generally due to a misconfiguration or invalid credentials. | ||
|
||
|
||
* `iac_scan_result_sarif_path`: The path for the SARIF report file. This file is only available when violations are found in the scan file. | ||
|
||
- `iac_scan_result_sarif_path`: The path for the SARIF report file. This | ||
file is only available when violations are found in the scan file. | ||
|
||
## Authorization | ||
|
||
|
||
Use [google-github-actions/auth](https://github.com/google-github-actions/auth) | ||
to authenticate the action. You can use [Workload Identity Federation][wif] or | ||
traditional [Service Account Key JSON][sa] for authentication. | ||
[Service account key JSON][sa] for authentication. | ||
|
||
|
||
```yaml | ||
jobs: | ||
job_id: | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
steps: | ||
- id: 'auth' | ||
uses: 'google-github-actions/auth@v2' | ||
with: | ||
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider' | ||
service_account: 'my-service-account@my-project.iam.gserviceaccount.com' | ||
- id: 'analyze-code-security-scc' | ||
uses: 'google-github-actions/analyze-code-security-scc@v1' | ||
job_id: | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
steps: | ||
- id: 'auth' | ||
uses: 'google-github-actions/auth@v2' | ||
with: | ||
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider' | ||
service_account: 'my-service-account@my-project.iam.gserviceaccount.com' | ||
- id: 'analyze-code-security-scc' | ||
uses: 'google-github-actions/analyze-code-security-scc@v1' | ||
``` | ||
|
||
|
||
## Supported asset types and policies | ||
|
||
|
||
For information about supported asset types and policies, see IaC Validation - Supported assets and policies. | ||
|
||
|
||
[sa]: https://cloud.google.com/iam/docs/creating-managing-service-accounts | ||
[wif]: https://cloud.google.com/iam/docs/workload-identity-federation |