You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,7 @@ Above example is just a simple example to call workflow from github shared workf
60
60
* [Example for terraform checks with digitalocean cloud](https://github.com/clouddrove/github-shared-workflows/blob/master/docs/terraform-checks.md#example-for-terraform-checks-with-digitalocean-cloud)
If you come accross a bug or have any feedback, please log it in our [issue tracker](https://github.com/clouddrove/github-shared-workflows/issues), or feel free to drop us an email at [[email protected]](mailto:[email protected]).
This workflow does a static code analysis tool for scanning infrastructure as code (IaC) files for misconfigurations that may lead to security or compliance problems.
4
+
5
+
#### Usage
6
+
Checkov is a static code analysis tool for scanning infrastructure as code (IaC) files for misconfigurations that may lead to security or compliance problems. Checkov includes more than 750 predefined policies to check for common misconfiguration issues. Checkov also supports the creation and contribution of custom policies.
7
+
8
+
## Supported IaC types
9
+
### Checkov scans these IaC file types:
10
+
11
+
- Terraform (for AWS, GCP, Azure and OCI)
12
+
- CloudFormation (including AWS SAM)
13
+
- Azure Resource Manager (ARM)
14
+
- Serverless framework
15
+
- Helm charts
16
+
- Kubernetes
17
+
- Docker
18
+
19
+
#### Example
20
+
```yaml
21
+
name: checkov
22
+
on:
23
+
# this can be trigger based on both master and main branch.
0 commit comments