highbond_todo (Resource)
Schema
Required
assigned_user_id | String | Specifies the unique identifier (UID) to whom the todo is assigned to |
description | String | A detailed description of the todo |
status | String | Status of the todo. Can have one of the following values - open cleared, closed |
target_id | String | The ID of the target resource |
target_type | String | 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_date | String | Specifies when the todo should be fulfilled by |
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
id | String | The ID of this resource. |
Read-Only
created_at | String | The timestamp identifying when the todo was created |
created_user_id | String | Specifies the unique identifier (UID) to who is the todo's creator |
updated_at | String | 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"
}