Skip to main content
Version: Latest Version (2.9.1)

highbond_request_item_status (Resource)

Schema

Required

actionString The action of the request item status. Valid field types are: 'nothing' and 'warning'
project_type_idNumber The ID of the project type.
statusString The displayed name of the request item status.

Optional

force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.

Read-Only

created_atString The timestamp identifying when the request item status was created.
defaultBoolean Specifies if the request item status is default (true) or not (false). The default statuses can't be deleted.
updated_atString The timestamp identifying when the request item status was updates.

Example Usage

resource "highbond_project_type" "main" {
name = "RequestItemStatus project type"
description = "Type Internal Control Description"
workflow = "control"
}

resource "highbond_request_item_status" "main" {
status = "NewStatus"
action = "warning"
project_type_id = highbond_project_type.main.id
}