Skip to main content
Version: Latest Version (2.9.1)

highbond_todo (Resource)

Schema

Required

assigned_user_idString Specifies the unique identifier (UID) to whom the todo is assigned to
descriptionString A detailed description of the todo
statusString Status of the todo. Can have one of the following values - open cleared, closed
target_idString The ID of the target resource
target_typeString The type of the target resource which can be of the following types: projects, controls, control_tests, control_test_plans, issues, narratives, objectives, walkthrough_summaries, project_files, project_plannings, project_results, risks, risk_control_matrices, testing_rounds, walkthroughs

Optional

due_dateString Specifies when the todo should be fulfilled by
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.

Read-Only

created_atString The timestamp identifying when the todo was created
created_user_idString Specifies the unique identifier (UID) to who is the todo's creator
updated_atString The timestamp identifying when the todo was last updated

Example Usage

resource "highbond_todo" "main" {
description = "Todo details"
due_date = "2021-01-19"
status = "cleared"
assigned_user_id = "Enter UUID here"
target_id = highbond_project.main.id
target_type = "projects"
}