|
| 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 | +``` |
0 commit comments