Splunk® SOAR (On-premises)

Build Playbooks with the Playbook Editor

Acrobat logo Download manual as PDF


Acrobat logo Download topic as PDF

Use decisions to send artifacts to a specific downstream action in your playbook

Use a Decision block to change the flow of artifacts by performing an If, Else If, or Else functions. When an artifact meets a True condition, it is passed downstream to the corresponding block in the playbook flow. If none of the Decision block conditions are met, the playbook run fails.

The first time an artifact meets a condition, it is passed along to the corresponding downstream block. The artifact is no longer available for evaluation by other Else If or Else statements, and cannot be passed to other downstream blocks. You can only perform one action an artifact based on the condition that is matched first.

In this example, IP addresses found in artifacts are compared against some specific IP address ranges:

  • If an IP address is in the 192.168.* range, perform an IP reputation lookup, ELSE IF
  • The IP address is in the 172.16.* range, grant access to the user, ELSE
  • If the IP address doesn't fall into either of the previous categories, perform a geolocate ip action.

Unlike Filter blocks, no named datasets are created for reference later on in the playbook.

Create a Decision block in your playbook

To create a decision block, perform the following tasks:

  1. Drag and drop the half-circle icon attached to any existing block in the editor. Select a Decision block from the menu that appears.
  2. Click the Select Parameter field and specify the datapath for the parameter you want to compare. Parameters are made available to the Decision block by upstream blocks. For details on specifying datapaths, including the now datapath, see Specify data in your playbook.
  3. (Optional) Create a custom datapath if the datapath you need isn't available. For details on creating a custom datapath, see Custom datapaths in the Specify data in your playbook article.
  4. Click in the == field and select an operator for the decision.
  5. Click the Select Value field and select the value you want to match. See Example of creating decisions for multiple downstream actions for an example of how these fields all work together.
  6. (Optional) Click + Else If to create another matching condition for the decision.
  7. Click Else to create the final branch for the decision.
  8. Click Done.

You can also configure Advanced settings for a decision block. You can use the Case-sensitive check box to select if you want the conditions evaluation to be case-sensitive, or case-insensitive. The default is case-sensitive. For more information on other Advanced settings, see Advanced settings.

Additionally, you can click the Info tab to create a custom name for the block, add a description for the block, and add a tooltip to the block. See Use custom names.

Example of creating decisions for multiple downstream actions

Decision blocks control the program flow based on comparisons of artifact data, container properties, date functions, and action results. Create if and else if conditions to branch to multiple downstream blocks as a results of the comparisons.

In the following example, start with a Decision block that checks to see if any artifacts are in the container.

This screen image shows a decision block in the playbook editor. The main elements are described in the text following this image.

  1. Drag and drop the half-circle icon attached to the start block in the editor. Select a Decision block from the menu that appears.
  2. In the If field, click the Select Parameter field and select a parameter to evaluate. You can choose from the properties provided by the container, artifact data, and date and time options.
  3. Select container properties from the list of options, and then click artifact_count as the property you want to evaluate.
  4. Select > as the operator, and enter 0 in the Select Value field.

Condition 1 corresponds with the green dot on the decision block. All data is passed on to the next block.

Example of creating decisions with multiple statements

You can create more complex decision blocks with up to five statements. The following example shows a decision based on user input through a prompt block. The prompt block asked a yes/no question on whether to block all IP addresses in the container or not. The decision block checks if the answer is "yes", and if so, all IPs are blocked and the status is set to resolved. Or, if the answer is "no", the status is simply set as resolved and no IP addresses are blocked.

This screen image shows a decision block with many decision branches. The branches are color-coded. The main elements are described in the text surrounding this image.

Each subsequent statement and downstream block is color coded: green marks the path of the If statement, and purple marks the path of the Else statement. Each statement has its own and only one downstream block.

Using decision and filter blocks together

When using decision and filter blocks, the best flow for creating a playbook using these blocks is to use a decision block, then a filter block. A decision block does not create a subset of data like a filter block does and a decision block stops evaluating conditions after the first matched condition. A filter creates a subset of data for each matched condition. For example, you can use a decision block to find out if you have at least one IP address, then use a filter block to create a subset of IPs to do an IP reputation check in a subsequent action.

Last modified on 23 February, 2024
PREVIOUS
Use filters in your playbook to specify a subset of artifacts before further processing
  NEXT
Customize the format of your playbook content

This documentation applies to the following versions of Splunk® SOAR (On-premises): 5.1.0, 5.2.1, 5.3.1, 5.3.2, 5.3.3, 5.3.4, 5.3.5, 5.3.6, 5.4.0, 5.5.0, 6.0.0, 6.0.1, 6.0.2, 6.1.0, 6.1.1, 6.2.0


Was this documentation topic helpful?


You must be logged into splunk.com in order to post comments. Log in now.

Please try to keep this discussion focused on the content covered in this documentation topic. If you have a more general question about Splunk functionality or are experiencing a difficulty with Splunk, consider posting a question to Splunkbase Answers.

0 out of 1000 Characters