Terrascan
Object Representation (YAML)
id: String
name: String
type: String
depends: [String]
tags: [String]
condition: Boolean
each: Array
while: String
until: String
verbosity: String
ignore_errors: Boolean
tool_version: String
tool_options: Object
properties:
command: String
config_file_content: String
config_file_path: String
log_level: String
log_type: String
output_type: String
iac_dir: String
iac_file: String
iac_type: String
iac_version: String
policy_type: [String]
policy_path: String
remote_url: String
remote_type: String
cwd: String
args: String
env:
- name: String
value: String
Fields
Property | Details |
---|---|
id *
|
String A unique identifier for the step. Can contain hyphens and underscores, but not spaces. |
name *
|
String A friendly name for the step. This name will appear in the pipeline designer and run output. |
type *
|
String The type of the step. Can be |
depends[]
|
[String] A list of dependencies of this step. This step will not be executed until all steps with |
tags[]
|
[String] Tags are used to group related steps. Steps with the same tag can be retrieved using the Can contain hyphens and underscores, but not spaces. |
condition
|
Boolean An expression which is evaluated before the step executes. If it evaluates to false, the step will be skipped. The |
each
|
Array An expression which evaluates to an array. It is evaluated once before the first iteration. There will be one iteration for each element of the array. An empty array ( |
while
|
String A boolean expression evaluated before each iteration. When the expression evaluates to |
until
|
String A boolean expression evaluated after each iteration. When the expression evaluates to |
verbosity
|
String Step event verbosity. Determines how much information about step execution is sent back to the application. |
ignore_errors
|
Boolean If |
tool_version
|
String The version to use for tool installation. |
tool_options
|
Object - |
properties.command *
|
String The terrascan command to run. One of |
properties.config_file_content
|
String Inline terrascan config file content. |
properties.config_file_path
|
String Path to terrascan config file. |
properties.log_level
|
String Log level. One of |
properties.log_type
|
String Log output type. One of |
properties.output_type
|
String Output format type. One of |
properties.iac_dir
|
String Path to a directory containing one or more IaC files to scan. |
properties.iac_file
|
String Path to a single IaC file to scan. |
properties.iac_type
|
String IaC type. One of |
properties.iac_version
|
String IaC version (helm: |
properties.policy_type[]
|
[String] Policy type. One of |
properties.policy_path
|
String - |
properties.remote_url
|
String URL pointing to a remote IaC repository. |
properties.remote_type
|
String Type of remote backend. One of |
properties.cwd
|
String If provided, the terrascan will use this path as its working directory. |
properties.args
|
String Extra arguments that will be provided to terrascan command. |
properties.env[]
|
[Object] A list of environment variables that will be set for script execution. |
properties.env[].name *
|
String Environment variable name. |
properties.env[].value *
|
String Environment variable value. |
Result Fields
The following are the step execution result fields available at steps.<step id>.result
after a step executes.
Key | Details |
---|---|
result.status
|
String A string indicating the step execution status. Can be Succeeded, Failed, or Skipped. |
result.exit_code
|
Number Exit code of the terrascan process. |
result.stdout
|
String Stdout of the terrascan process. |
result.stderr
|
String Stderr of the terrascan process. |
result.results
|
Object The parsed JSON output of terrascan. Only available if the |