Skip to main content
Version: Latest Version (2.9.1)

highbond_workflow_status (Resource)

Schema

Required

nameString The name of the status. Names are case-insensitive and must be unique
positionNumber Determines the visual order of statuses inside the workflow
workflow_idString The ID of the workflow

Optional

colorString Hexadecimal value to capture a color for the field, used in display and reporting
defaultBoolean Specifies that this status is the default for items in the workflow. Every workflow must have exactly one default status
descriptionString The description of the status
event_idsSet of String The IDs of the event associated with workflow status
force_deleteBoolean If set to true, the status will be deleted regardless of default, locked, or linked items conditions. System statuses cannot be deleted, even with this set to true
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.
lockedBoolean Indicates that this status cannot be deleted by the user.
shownBoolean Indicates that this status is shown in the workflow by default

Read-Only

created_atString The date the status was created
systemBoolean Indicates that this workflow cannot be modified by the user
updated_atString The date the status was updated

Example Usage

resource "highbond_workflow_status" "main" {
name = "My second Workflow status"
description = "The description of the status"
position = 1
default = true
shown = true
locked = true
color = "The color of the status"
workflow_id = "09d5837d-e0a5-47d8-9511-25f378bd360f"
event_ids = ["5c075506-f093-4572-89d0-67e5c53073f7"]
force_delete = false
force_updates = true // Create only with force update changes
}