Skip to main content
Version: Latest Version (2.9.1)

highbond_workflow (Resource)

Schema

Required

nameString The name of the workflow. Names are case-insensitive and must be unique

Optional

api_nameString The API name of the workflow that is unique within the org, uneditable after creation, and must satisfy the following restrictions
descriptionString The description of the workflow
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.
lockedBoolean Indicates that this workflow cannot be deleted by the user

Read-Only

created_atString The date the workflow was created
systemBoolean Indicates that this workflow cannot be modified by the user
updated_atString 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
}