-
Notifications
You must be signed in to change notification settings - Fork 12
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
Reshef Sharvit
committed
May 25, 2021
1 parent
493f6a6
commit 0a5317c
Showing
1 changed file
with
28 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# trivy-plugin-aqua | ||
A [Trivy](https://github.com/aquasecurity/trivy) plugin that scans infrastructure as code templates | ||
|
||
## Install | ||
|
||
``` | ||
$ trivy plugin install github.com/aquasecurity/trivy-plugin-aqua | ||
$ trivy aqua -h | ||
Usage: trivy aqua [-h,--help] TYPE NAME [TRIVY OPTION] | ||
A Trivy plugin that scans infrastructure as code templates. | ||
Options: | ||
-h, --help Show usage. | ||
Examples: | ||
# Scan an IaC file | ||
trivy plugin run aqua iac --aqua-key <key> --aqua-secret <secret> <target> | ||
``` | ||
|
||
## Usage | ||
Trivy's options need to be passed after `--`. | ||
|
||
``` | ||
# Scan an IaC file | ||
trivy plugin run aqua iac --aqua-key <key> --aqua-secret <secret> <target> | ||
``` | ||
|