highbond_workflow (Resource)
Schema
Required
name | String | The name of the workflow. Names are case-insensitive and must be unique |
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 |
description | String | The description of the workflow |
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
id | String | The ID of this resource. |
locked | Boolean | Indicates that this workflow cannot be deleted by the user |
Read-Only
created_at | String | The date the workflow was created |
system | Boolean | Indicates that this workflow cannot be modified by the user |
updated_at | String | The date the workflow was updated |
Example Usage
resource "highbond_workflow" "main" {
name = "My first Workflow"
description = "Description of My first Workflow"
locked = false
force_updates = true // Create only with force update changes
}