Skip to content

Commit e570cdd

Browse files
chdorner-snykbastiandoetsch
chdorner-snyk
authored andcommitted
docs: synchronizing help from snyk/user-docs
1 parent a22261d commit e570cdd

File tree

8 files changed

+95
-10
lines changed

8 files changed

+95
-10
lines changed

help/cli-commands/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Commands to find and manage security issues in Infrastructure as Code files.
4444

4545
Find security issues using static code analysis.
4646

47-
### [`snyk sbom`](sbom.md) <a href="#snyk-sbom" id="snyk-sbom"></a>
47+
### [`snyk sbom`](sbom.md)
4848

4949
Produce an SBOM for a local software project in an ecosystem supported by Snyk.
5050

help/cli-commands/code-test.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Default: `<ORG_ID>` that is the current preferred organization in your [Account
4545

4646
Note that you can also use `--org=<orgslugname>`. The `ORG_ID` works in both the CLI and the API. The organization slug name works in the CLI, but not in the API.
4747

48-
For more information see the article [How to select the organization to use in the CLI](https://support.snyk.io/hc/en-us/articles/360000920738-How-to-select-the-organization-to-use-in-the-CLI)
48+
For more information see the article [How to select the organization to use in the CLI](https://docs.snyk.io/snyk-cli/test-for-vulnerabilities/how-to-select-the-organization-to-use-in-the-cli)
4949

5050
### `--json`
5151

help/cli-commands/iac-capture.md

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# IaC capture
2+
3+
## Usage
4+
5+
**Feature availability:** This feature is available in Snyk CLI version v1.1117.0 or greater.
6+
7+
`snyk iac capture [<OPTIONS>] [<PATH>]`
8+
9+
## Description
10+
11+
The `snyk iac capture` command generates a mapping artifact that contains the minimum amount of information needed to generate, from Terraform state files, resource mappings from code to Cloud, such as resource IDs and names, and sends the mapping artifact to Snyk.
12+
13+
Snyk uses this information to link Cloud issues to their originating IaC files. The links can be viewed in the Snyk Web UI.
14+
15+
For more information, see [Fix Cloud issues in IaC](https://docs.snyk.io/scan-cloud-deployment/snyk-cloud/snyk-cloud-issues/fix-cloud-issues-in-iac)
16+
17+
For a list of related commands see the [snyk iac](iac.md) help; `iac --help`
18+
19+
## Exit codes
20+
21+
Possible exit codes and their meaning:
22+
23+
**0**: success\
24+
**1**: failed to capture one or more Terraform states
25+
26+
## Configure the Snyk CLI
27+
28+
You can use environment variables and set variables for connecting with the Snyk API; see [Configure the Snyk CLI](https://docs.snyk.io/snyk-cli/configure-the-snyk-cli)
29+
30+
## Debug
31+
32+
Use the `-d` option to output the debug logs.
33+
34+
## Options
35+
36+
### `--org=<ORG_ID>`
37+
38+
Specify the `<ORG_ID>` to run Snyk commands tied to a specific organization. Overrides the default `<ORG_ID>` that is the current preferred organization in your [Account settings](https://app.snyk.io/account)
39+
40+
Note that you can also use `--org=<orgslugname>`. The `ORG_ID` works in both the CLI and the API. The organization slug name works in the CLI, but not in the API.
41+
42+
For more information see the article [How to select the organization to use in the CLI](https://docs.snyk.io/snyk-cli/test-for-vulnerabilities/how-to-select-the-organization-to-use-in-the-cli)
43+
44+
### `--stdin`
45+
46+
Generate the mapping artifact from Terraform state in the standard input instead of looking for state files in the `PATH`.
47+
48+
```
49+
$ terraform pull | snyk iac capture --stdin
50+
```
51+
52+
### `PATH`
53+
54+
Optional argument to generate the mapping artifact from Terraform state file(s) in the PATH. Can either be a path to a directory, a path to a file, or a glob pattern.
55+
56+
```
57+
$ snyk iac capture /path/to/states/**/*.tfstate
58+
```
59+
60+
## Examples for snyk iac capture command
61+
62+
### Capture from all states in the current working directory
63+
64+
```
65+
$ snyk iac capture
66+
```
67+
68+
### Capture from all files ending with .tfstate in a directory
69+
70+
```
71+
$ snyk iac capture /path/to/states/**/*.tfstate
72+
```
73+
74+
### Capture from a single state file
75+
76+
```
77+
$ snyk iac capture /path/to/state.tfstate
78+
```
79+
80+
### Capture from states pulled with Terraform in the standard input
81+
82+
```
83+
$ terraform pull | snyk iac capture --stdin
84+
```

help/cli-commands/iac-describe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Specify the `<ORG_ID>` to run Snyk commands tied to a specific organization. Ove
6262

6363
Note that you can also use `--org=<orgslugname>`. The `ORG_ID` works in both the CLI and the API. The organization slug name works in the CLI, but not in the API.
6464

65-
For more information see the article [How to select the organization to use in the CLI](https://support.snyk.io/hc/en-us/articles/360000920738-How-to-select-the-organization-to-use-in-the-CLI)
65+
For more information see the article [How to select the organization to use in the CLI](https://docs.snyk.io/snyk-cli/test-for-vulnerabilities/how-to-select-the-organization-to-use-in-the-cli)
6666

6767
### `--from=<STATE>[,<STATE>...]`
6868

help/cli-commands/iac.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ For more information see [Snyk CLI for Infrastructure as Code](https://docs.snyk
1515
All the `snyk iac` commands are listed here with the help options:
1616

1717
- [iac test](iac-test.md); `iac test --help`: tests for any known security issue
18-
- [iac update-exclude-policy](iac-update-exclude-policy.md); `iac update-exclude-policy --help`: auto-generates `.snyk` exclusions for cloud resources\
19-
Example: `snyk iac describe --json --all | snyk iac update-exclude-policy`
18+
- [iac capture](iac-capture.md); `iac capture --help`: generates mapping artifacts by accessing Terraform state configurations&#x20;
2019
- [iac describe](iac-describe.md); `iac describe --help`: detects infrastructure drift and unmanaged cloud resources\
2120
Example: `snyk iac describe --only-unmanaged`
21+
- [iac update-exclude-policy](iac-update-exclude-policy.md); `iac update-exclude-policy --help`: auto-generates `.snyk` exclusions for cloud resources\
22+
Example: `snyk iac describe --json --all | snyk iac update-exclude-policy`

help/cli-commands/monitor.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Default: `<ORG_ID>` that is the current preferred organization in your [Account
110110

111111
Note that you can also use `--org=<orgslugname>`. The `ORG_ID` works in both the CLI and the API. The organization slug name works in the CLI, but not in the API.
112112

113-
For more information see the article [How to select the organization to use in the CLI](https://support.snyk.io/hc/en-us/articles/360000920738-How-to-select-the-organization-to-use-in-the-CLI)
113+
For more information see the article [How to select the organization to use in the CLI](https://docs.snyk.io/snyk-cli/test-for-vulnerabilities/how-to-select-the-organization-to-use-in-the-cli)
114114

115115
### `--file=<FILE>`
116116

@@ -310,7 +310,7 @@ You can specify how many sub-directories to search using `--detection-depth`.
310310

311311
You can exclude directories and files using `--exclude`.
312312

313-
Default:`--all-projects` automatically detects and scans Yarn Workspaces.with other projects.&#x20;
313+
Default:`--all-projects` automatically detects and scans Yarn Workspaces.with other projects.
314314

315315
## Option for CocoaPods projects
316316

@@ -352,7 +352,7 @@ Add`--package-manager=pip` to your command if the file name is not `requirements
352352

353353
This option is mandatory if you specify a value for the `--file` parameter that is not to a `requirements.txt` file. The test fails without this parameter. Specify this parameter with the value `pip`.
354354

355-
For complete information about the command see [`--package-manager=<PACKAGE_MANAGER_NAME>`](https://docs.snyk.io/snyk-cli/commands/monitor#package-manager-less-than-package_manager_name-greater-than)``
355+
For complete information about the command see [`--package-manager=<PACKAGE_MANAGER_NAME>`](https://docs.snyk.io/snyk-cli/commands/monitor#package-manager-less-than-package_manager_name-greater-than)\`\`
356356

357357
## Options for scanning using `--unmanaged`
358358

help/cli-commands/sbom.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
**Note:** In order to run the SBOM generation feature, you must use a minimum of CLI version 1.1071.0.
88

9-
`$ snyk sbom --format=<cyclonedx1.4+json|spdx2.3+json|cyclonedx1.4+xml> [--file=<file>] [--unmanaged] [--org=<ORG_ID>] [<TARGET_DIRECTORY>]`
9+
`$ snyk sbom --format=<cyclonedx1.4+json|cyclonedx1.4+xml>|spdx2.3+json [--file=<file>] [--unmanaged] [--org=<ORG_ID>] [<TARGET_DIRECTORY>]`
1010

1111
## Description
1212

help/cli-commands/test.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Default: `<ORG_ID>` that is the current preferred organization in your [Account
107107

108108
**Note:** You can also use `--org=<orgslugname>.` The `ORG_ID` works in both the CLI and the API. The organization slug name works in the CLI, but not in the API.
109109

110-
For more information see the article [How to select the organization to use in the CLI](https://support.snyk.io/hc/en-us/articles/360000920738-How-to-select-the-organization-to-use-in-the-CLI)
110+
For more information see the article [How to select the organization to use in the CLI](https://docs.snyk.io/snyk-cli/test-for-vulnerabilities/how-to-select-the-organization-to-use-in-the-cli)
111111

112112
### `--file=<FILE>`
113113

0 commit comments

Comments
 (0)