highbond_workflow (Data Source)
Schema
Optional
api_name | String | The API name of the workflow that is unique within the org, uneditable after creation, and must satisfy the following restrictions |
name | String | The name of the workflow. Names are case-insensitive and must be unique |
Read-Only
description | String | The description of the workflow |
id | String | The ID of the workflow |
is_available | Boolean | This flag can be used to check if data source is available or not |
locked | Boolean | Indicates that this workflow cannot be deleted by the user |
Example Usage
data "highbond_workflow" "main" {
name = "My first Workflow"
}
data "highbond_workflow" "api_name" {
api_name = "my_api_name"
}